AK.ExpressionSolverTests.Assert C# (CSharp) Метод

Assert() публичный статический Метод

public static Assert ( bool cond ) : void
cond bool
Результат void
        public static void Assert(bool cond)
        {
            if (!cond)
            {
                throw new System.Exception("ExpressionSolverTest failed");
            }
        }