ModelBuilder.UnitTests.IgnoreRuleTests.ThrowsExceptionWhenCreatedWithWhiteSpaceNameTest C# (CSharp) Method

ThrowsExceptionWhenCreatedWithWhiteSpaceNameTest() private method

private ThrowsExceptionWhenCreatedWithWhiteSpaceNameTest ( ) : void
return void
        public void ThrowsExceptionWhenCreatedWithWhiteSpaceNameTest()
        {
            Action action = () => new IgnoreRule(typeof (string), "  ");

            action.ShouldThrow<ArgumentException>();
        }
    }