From 0c462ad6148e1baa8dbc0675927938819c9085ff Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Fri, 20 Jul 2018 11:21:12 -0400 Subject: [PATCH] test: Adding missing test --- ICD.Common.Utils.Tests/Extensions/TypeExtensionsTest.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ICD.Common.Utils.Tests/Extensions/TypeExtensionsTest.cs b/ICD.Common.Utils.Tests/Extensions/TypeExtensionsTest.cs index 0ee9073..755b9d6 100644 --- a/ICD.Common.Utils.Tests/Extensions/TypeExtensionsTest.cs +++ b/ICD.Common.Utils.Tests/Extensions/TypeExtensionsTest.cs @@ -2,6 +2,7 @@ using System.Collections; using System.Collections.Generic; using System.Linq; +using System.Reflection; using ICD.Common.Utils.Extensions; using NUnit.Framework; @@ -89,7 +90,8 @@ namespace ICD.Common.Utils.Tests.Extensions [Test] public void GetAssemblyTest() { - Assert.Inconclusive(); + Assembly assembly = typeof(TypeExtensionsTest).GetAssembly(); + Assert.IsTrue(assembly.FullName.Contains("ICD.Common.Utils")); } [TestCase(typeof(string), typeof(object), true)]