Tidying, additional test stubs

This commit is contained in:
Chris Cameron
2017-10-13 17:10:44 -04:00
parent 88f657b3a6
commit 35811f8273
6 changed files with 118 additions and 13 deletions

View 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();
}
}
}