示例#1
0
        public void TearDown()
        {
            // ToDo: Implement TearDown logic here
            this.testObject = null;

            Assert.Inconclusive("Verify the correctness of this test method.");
        }
示例#2
0
        public void ConstructWithParametersTest()
        {
            // TODO: Implement unit test for ConstructWithParameters
            this.testObject = new DefaultMemberBuilderFactory();


            Assert.Inconclusive("Verify the correctness of this test method.");
        }
示例#3
0
        public void SetUp()
        {
            // ToDo: Implement SetUp logic here
            this.mocks        = new MockRepository();
            this.serializer   = this.mocks.StrictMock <NStub.CSharp.ObjectGeneration.Builders.IBuilderSerializer>();
            this.handlersItem = this.mocks.StrictMock <IBuildHandler>();
            this.handlers     = new[] { handlersItem };
            this.testObject   = new DefaultMemberBuilderFactory(this.serializer, this.handlers);

            Assert.Inconclusive("Verify the correctness of this test method.");
        }