mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-09 09:45:10 +00:00
45 lines
617 B
C#
45 lines
617 B
C#
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();
|
|
}
|
|
}
|
|
}
|