Exemple #1
0
        public static void BadAssert(string input, CalcumalateError output)
        {
            CalcumalateResult result = Calcumalator.Calcumalate(input);

            if (result.Error != output)
            {
                Debug.WriteLine(input + " = " + output.ToString() + ", GOT " + result.Error.ToString());
            }
        }
Exemple #2
0
        public static void Assert(string input, double output)
        {
            CalcumalateResult result = Calcumalator.Calcumalate(input);

            if (Math.Abs(result.Result - output) <= Math.Abs(result.Result * 0.00001))
            {
            }
            else
            {
                Debug.WriteLine(input + " = " + output + ", GOT " + result.Result);
            }
        }