public static void runTest()
        {
            s_utils = new EnumerableUtils();

            s_utils.CreateTestDirs();

            TestIEnumerator();
            TestClone();

            s_utils.DeleteTestDirs();

            Assert.True(s_utils.Passed);
        }
Exemplo n.º 2
0
    public void runTest()
    {
        s_utils = new EnumerableUtils();

        s_utils.CreateTestDirs(TestDirectory);

        TestIEnumerator();
        TestClone();

        s_utils.DeleteTestDirs();

        Assert.True(s_utils.Passed);
    }
Exemplo n.º 3
0
        public void RunTests()
        {
            utils = new EnumerableUtils();

            utils.CreateTestDirs(TestDirectory);

            TestFileAPIs();

            TestFileExceptions();

            utils.DeleteTestDirs();

            Assert.True(utils.Passed);
        }
Exemplo n.º 4
0
        public void RunTests()
        {
            utils = new EnumerableUtils();

            utils.CreateTestDirs(TestDirectory);

            TestFileAPIs();

            TestFileExceptions();

            utils.DeleteTestDirs();

            Assert.True(utils.Passed);
        }
Exemplo n.º 5
0
        public static void RunTests()
        {
            s_utils = new EnumerableUtils();

            s_utils.CreateTestDirs();

            TestDirectoryInfoAPIs();

            TestExceptions();

            TestWhileEnumerating();

            s_utils.DeleteTestDirs();

            Assert.True(s_utils.Passed);
        }
        public static void RunTests()
        {
            s_utils = new EnumerableUtils();

            s_utils.CreateTestDirs();

            TestDirectoryInfoAPIs();

            TestExceptions();

            if (Interop.IsWindows) // test currently relies on the explicit order being returned on Windows
            {
                TestWhileEnumerating();
            }

            s_utils.DeleteTestDirs();

            Assert.True(s_utils.Passed);
        }
Exemplo n.º 7
0
        public static void runTest()
        {
            s_utils = new EnumerableUtils();

            s_utils.CreateTestDirs();

            TestDirectoryAPIs();

            TestExceptions();

            if (Interop.IsWindows) // test relies on the explicit order being returned on Windows
            {
                TestWhileEnumerating();
            }

            s_utils.DeleteTestDirs();

            Assert.True(s_utils.Passed);
        }