mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 12:07:05 +00:00
Tidying, additional test stubs
This commit is contained in:
parent
88f657b3a6
commit
35811f8273
6 changed files with 118 additions and 13 deletions
50
ICD.Common.Utils.Tests/Extensions/HashSetExtensionsTest.cs
Normal file
50
ICD.Common.Utils.Tests/Extensions/HashSetExtensionsTest.cs
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
using NUnit.Framework;
|
||||
|
||||
namespace ICD.Common.Utils.Tests.Extensions
|
||||
{
|
||||
[TestFixture]
|
||||
public sealed class HashSetExtensionsTest
|
||||
{
|
||||
[Test]
|
||||
public void SubtractTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void IsSubsetOfTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void IntersectionTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void NonIntersectionTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void IsProperSubsetOfTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void IsSupersetOfTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void IsProperSupersetOfTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
}
|
||||
}
|
||||
38
ICD.Common.Utils.Tests/Extensions/JsonExtensionsTest.cs
Normal file
38
ICD.Common.Utils.Tests/Extensions/JsonExtensionsTest.cs
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
using NUnit.Framework;
|
||||
|
||||
namespace ICD.Common.Utils.Tests.Extensions
|
||||
{
|
||||
[TestFixture]
|
||||
public sealed class JsonExtensionsTest
|
||||
{
|
||||
[Test]
|
||||
public void WriteObjectTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void GetValueAsIntTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void GetValueAsStringTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void GetValueAsBoolTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void GetValueAsEnumTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
using NUnit.Framework;
|
||||
|
||||
namespace ICD.Common.Utils.Tests.Extensions
|
||||
{
|
||||
[TestFixture]
|
||||
public sealed class ReflectionExtensionsTest
|
||||
{
|
||||
[Test]
|
||||
public void GetCustomAttributesTest()
|
||||
{
|
||||
Assert.Inconclusive();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue