ModelBuilder.UnitTests.IgnoreRuleTests.ThrowsExceptionWhenCreatedWithWhiteSpaceNameTest C# (CSharp) Метод

ThrowsExceptionWhenCreatedWithWhiteSpaceNameTest() приватный Метод

private ThrowsExceptionWhenCreatedWithWhiteSpaceNameTest ( ) : void
Результат void
        public void ThrowsExceptionWhenCreatedWithWhiteSpaceNameTest()
        {
            Action action = () => new IgnoreRule(typeof (string), "  ");

            action.ShouldThrow<ArgumentException>();
        }
    }