System.ASSERT.POSTCONDITION C# (CSharp) Method

POSTCONDITION() private method

private POSTCONDITION ( bool condition ) : void
condition bool
return void
        internal static void POSTCONDITION(bool condition)
        {
            Assert(condition);
        }

Same methods

ASSERT::POSTCONDITION ( bool condition, string message ) : void
ASSERT::POSTCONDITION ( bool condition, string message, string detailedMessage ) : void