コード例 #1
0
    public static int Main()
    {
        ArrayIndexOf3 ac = new ArrayIndexOf3();

        TestLibrary.TestFramework.BeginTestCase("Array.IndexOf(T[] array, T value)");

        if (ac.RunTests())
        {
            TestLibrary.TestFramework.EndTestCase();
            TestLibrary.TestFramework.LogInformation("PASS");
            return(100);
        }
        else
        {
            TestLibrary.TestFramework.EndTestCase();
            TestLibrary.TestFramework.LogInformation("FAIL");
            return(0);
        }
    }
コード例 #2
0
    public static int Main()
    {
        ArrayIndexOf3 test = new ArrayIndexOf3();

        TestLibrary.TestFramework.BeginTestCase("ArrayIndexOf3");

        if (test.RunTests())
        {
            TestLibrary.TestFramework.EndTestCase();
            TestLibrary.TestFramework.LogInformation("PASS");
            return(100);
        }
        else
        {
            TestLibrary.TestFramework.EndTestCase();
            TestLibrary.TestFramework.LogInformation("FAIL");
            return(0);
        }
    }
コード例 #3
0
ファイル: arrayindexof3.cs プロジェクト: CheneyWu/coreclr
    public static int Main()
    {
        ArrayIndexOf3 test = new ArrayIndexOf3();

        TestLibrary.TestFramework.BeginTestCase("ArrayIndexOf3");

        if (test.RunTests())
        {
            TestLibrary.TestFramework.EndTestCase();
            TestLibrary.TestFramework.LogInformation("PASS");
            return 100;
        }
        else
        {
            TestLibrary.TestFramework.EndTestCase();
            TestLibrary.TestFramework.LogInformation("FAIL");
            return 0;
        }
    }