diff options
author | Serghei Cebotari <serghei@cebotari.ru> | 2024-02-08 17:11:11 +0300 |
---|---|---|
committer | Serghei Cebotari <serghei@cebotari.ru> | 2024-02-08 17:11:11 +0300 |
commit | 69db707d6803ada3891e4e71b8660ad095392973 (patch) | |
tree | d188676a0a5c40816fc6fa73955e883ea1f8c206 /RhSolutions.Api.Tests/TestServiceCollection.cs | |
parent | a9ce0c1785ce7c220ff953db7a21cf33535c6d26 (diff) |
Rename Parser projects
Diffstat (limited to 'RhSolutions.Api.Tests/TestServiceCollection.cs')
-rw-r--r-- | RhSolutions.Api.Tests/TestServiceCollection.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/RhSolutions.Api.Tests/TestServiceCollection.cs b/RhSolutions.Api.Tests/TestServiceCollection.cs deleted file mode 100644 index 9f15c89..0000000 --- a/RhSolutions.Api.Tests/TestServiceCollection.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Microsoft.Extensions.DependencyInjection; - -namespace RhSolutions.Api.Tests; - -[SetUpFixture] -public class TestServiceCollection -{ - public static ServiceProvider? ServiceProvider { get; private set; } - - [OneTimeSetUp] - public void CreateProvider() - { - var collection = new ServiceCollection(); - collection.AddModifiers(); - ServiceProvider = collection.BuildServiceProvider(); - } - - [OneTimeTearDown] - public void DisposeProvider() - { - ServiceProvider?.Dispose(); - } -}
\ No newline at end of file |