- remove now invalid test case

ImplementExpressionTrees
Simon G 3 years ago
parent b19ea9fbf6
commit 23fd988dde
  1. 2
      Test.LightweightIocContainer/FluentFactoryRegistrationTest.cs

@ -142,11 +142,9 @@ public class FluentFactoryRegistrationTest
ITestFactory factory = _iocContainer.Resolve<ITestFactory>(); ITestFactory factory = _iocContainer.Resolve<ITestFactory>();
ITest test = factory.Create(); ITest test = factory.Create();
ITest test2 = factory.CreateTest();
Assert.IsInstanceOf<ITestFactory>(factory); Assert.IsInstanceOf<ITestFactory>(factory);
Assert.IsInstanceOf<ITest>(test); Assert.IsInstanceOf<ITest>(test);
Assert.IsInstanceOf<ITest>(test2);
} }
[Test] [Test]

Loading…
Cancel
Save