AK.ExpressionSolverTests.Assert C# (CSharp) Method

Assert() public static method

public static Assert ( bool cond ) : void
cond bool
return void
        public static void Assert(bool cond)
        {
            if (!cond)
            {
                throw new System.Exception("ExpressionSolverTest failed");
            }
        }