Esempio n. 1
0
    public static int Main(string[] args)
    {
        var isPassing = true;

        HVATests <byte> byteTests = new HVATests <byte>();

        byteTests.doTests();

        return(byteTests.isPassing ? PASS : FAIL);
    }
Esempio n. 2
0
    public static int Main(string[] args)
    {
        HVATests <byte> byteTests = new HVATests <byte>();

        byteTests.doTests();

        if (byteTests.isPassing)
        {
            Console.WriteLine("Test Passed");
        }
        else
        {
            Console.WriteLine("Test FAILED");
        }

        return(byteTests.isPassing ? PASS : FAIL);
    }