Пример #1
0
        public void FuzzProfileByTypeOverridesInheritance()
        {
            var annotation = new FuzzTestMethodWithProfile
            {
                FuzzProfileType = typeof(UnitTestFuzzProfile),
            };

            Assert.IsType <UnitTestFuzzProfile>(annotation.FuzzProfile);
        }
Пример #2
0
        public void FuzzProfileByInheritance()
        {
            var annotation = new FuzzTestMethodWithProfile();

            Assert.IsType <UnitTestInheritanceFuzzProfile>(annotation.FuzzProfile);
        }
Пример #3
0
        public void FuzzProfileByInheritance()
        {
            var annotation = new FuzzTestMethodWithProfile();

            Assert.IsInstanceOfType(annotation.FuzzProfile, typeof(UnitTestInheritanceFuzzProfile));
        }