mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-22 11:06:41 -04:00
14 lines
350 B
C#
14 lines
350 B
C#
using Xunit;
|
|
|
|
namespace Cleanuparr.Infrastructure.Tests.Features.Auth;
|
|
|
|
/// <summary>
|
|
/// OidcAuthService keeps pending flows and one-time codes in static dictionaries.
|
|
/// Specs that touch them run sequentially.
|
|
/// </summary>
|
|
[CollectionDefinition(Name)]
|
|
public class OidcStaticStateCollection
|
|
{
|
|
public const string Name = "OidcStaticState";
|
|
}
|