/// <summary> ///A test for GetInstanceByType ///</summary> public void GetInstanceByTypeTestHelper <T>() { Type type = typeof(MockObject); object[] args = null; T actual; actual = target.GetInstanceByType <T>(type, args); Assert.IsNotNull(actual); }