Exemple #1
0
        public void Child_class_with_default_constructor_are_ok()
        {
            Action testDelegate = () =>
            {
                var testCase   = typeof(DiscoveryCases.DefaultConstructorOnDerivedClassSpec);
                var constuctor = Discovery.FindConfigConstructor(testCase);
                constuctor.Should().NotBeNull();
            };

            testDelegate.ShouldNotThrow();
        }