ModelBuilder.UnitTests.ObjectExtensionTests.FindPropertiesThrowsExecptionWithNullNameTest C# (CSharp) Method

FindPropertiesThrowsExecptionWithNullNameTest() private method

private FindPropertiesThrowsExecptionWithNullNameTest ( ) : void
return void
        public void FindPropertiesThrowsExecptionWithNullNameTest()
        {
            var target = new object();

            Action action = () => target.FindProperties(null);

            action.ShouldThrow<ArgumentNullException>();
        }
    }