Catel.Test.Data.ModelBaseTest.InitializePropertyAfterConstruction_Null C# (CSharp) Method

InitializePropertyAfterConstruction_Null() private method

private InitializePropertyAfterConstruction_Null ( ) : void
return void
        public void InitializePropertyAfterConstruction_Null()
        {
            var obj = new DynamicObject();
            ExceptionTester.CallMethodAndExpectException<ArgumentNullException>(() => obj.InitializePropertyAfterConstruction(null));
        }
ModelBaseTest