private void RunCT(long min, long max, long expected, string p_4)
        {
            FoxIntegerLevelThree target = new FoxIntegerLevelThree();             // TODO: Initialize to an appropriate value
            long actual;

            actual = target.count(min, max);
            Assert.AreEqual(expected, actual, p_4);
        }
 // END CUT HERE
 // BEGIN CUT HERE
 public static void Main()
 {
     FoxIntegerLevelThree ___test = new FoxIntegerLevelThree();
     ___test.run_test(-1);
     try {
     } catch(Exception e) {
     //Console.WriteLine(e.StackTrace);
     Console.WriteLine(e.ToString());
     }
 }
// END CUT HERE
// BEGIN CUT HERE
    public static void Main()
    {
        FoxIntegerLevelThree ___test = new FoxIntegerLevelThree();

        ___test.run_test(-1);
        try {
        } catch (Exception e) {
//Console.WriteLine(e.StackTrace);
            Console.WriteLine(e.ToString());
        }
    }