Beispiel #1
0
    public static void CreateNewTestCases()
    {
        bool      bResult = false;
        CreateNew test    = new CreateNew();

        try
        {
            bResult = test.RunTest();
        }
        catch (Exception exc_main)
        {
            bResult = false;
            Console.WriteLine("FAiL! Error in CreateNew! Uncaught Exception in main(), exc_main==" + exc_main.ToString());
        }

        Assert.True(bResult, "One or more test cases failed.");
    }