ModelBuilder.UnitTests.DomainNameValueGeneratorTests.GenerateThrowsExceptionWithNullTypeTest C# (CSharp) Method

GenerateThrowsExceptionWithNullTypeTest() private method

private GenerateThrowsExceptionWithNullTypeTest ( ) : void
return void
        public void GenerateThrowsExceptionWithNullTypeTest()
        {
            var target = new DomainNameValueGenerator();

            Action action = () => target.Generate(null, null, null);

            action.ShouldThrow<ArgumentNullException>();
        }