示例#1
0
        public void when_building_should_copy_values_from_test_method()
        {
            var result = builder.Build(test);

            specify(() => result.BuilderException == test.BuilderException);
            specify(() => result.Categories == test.Categories);
            specify(() => result.Description == test.Description);
            specify(() => result.ExceptionProcessor == test.ExceptionProcessor);
            specify(() => result.Fixture == test.Fixture);
            specify(() => result.IgnoreReason == test.IgnoreReason);
            specify(() => result.Parent == test.Parent);
            specify(() => result.Properties == test.Properties);
            specify(() => result.RunState == test.RunState);
        }