示例#1
0
        public void ShouldUseCustomInstantiationProcedure()
        {
            LiveTestBase test = new TestWithCustomInstantiation(this.initializationManager);

            Assert.NotEqual(this.realTest, test);
            Assert.IsType <LiveTestBase>(test);
            Assert.IsNotType <TestWithCustomInstantiation>(test);
        }
    public void ShouldUseCustomInstantiationProcedure()
    {
      LiveTestBase test = new TestWithCustomInstantiation(this.initializationManager);

      Assert.NotEqual(this.realTest, test);
      Assert.IsType<LiveTestBase>(test);
      Assert.IsNotType<TestWithCustomInstantiation>(test);
    }