ModelBuilder.UnitTests.LastNameValueGeneratorTests.GenerateThrowsExceptionWithNullBuildChainTest C# (CSharp) Method

GenerateThrowsExceptionWithNullBuildChainTest() private method

private GenerateThrowsExceptionWithNullBuildChainTest ( ) : void
return void
        public void GenerateThrowsExceptionWithNullBuildChainTest()
        {
            var target = new LastNameValueGeneratorWrapper();

            Action action = () => target.RunNullTest();

            action.ShouldThrow<ArgumentNullException>();
        }