mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 12:07:05 +00:00
Stub tests for ServiceProvider
This commit is contained in:
parent
c3d47f6b38
commit
4c5a2ab311
1 changed files with 44 additions and 0 deletions
44
ICD.Common.Utils.Tests/Services/ServiceProviderTest.cs
Normal file
44
ICD.Common.Utils.Tests/Services/ServiceProviderTest.cs
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
using NUnit.Framework;
|
||||
|
||||
namespace ICD.Common.Utils.Tests.Services
|
||||
{
|
||||
[TestFixture]
|
||||
public sealed class ServiceProviderTest
|
||||
{
|
||||
[Test]
|
||||
public void GetServiceGenericTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void GetServiceTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TryGetServiceGenericTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TryGetServiceTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void AddServiceGenericTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void AddServiceTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue