test: Adding missing test

This commit is contained in:
Chris Cameron
2018-07-20 11:21:12 -04:00
parent f2d32fd355
commit 0c462ad614

View File

@@ -2,6 +2,7 @@
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Reflection;
using ICD.Common.Utils.Extensions; using ICD.Common.Utils.Extensions;
using NUnit.Framework; using NUnit.Framework;
@@ -89,7 +90,8 @@ namespace ICD.Common.Utils.Tests.Extensions
[Test] [Test]
public void GetAssemblyTest() public void GetAssemblyTest()
{ {
Assert.Inconclusive(); Assembly assembly = typeof(TypeExtensionsTest).GetAssembly();
Assert.IsTrue(assembly.FullName.Contains("ICD.Common.Utils"));
} }
[TestCase(typeof(string), typeof(object), true)] [TestCase(typeof(string), typeof(object), true)]