public void TestComputeScc_test_file()
        {
            Main target = new Main();
            var result = target.ComputeScc(@".\..\..\..\UnitTests\test.txt");

            AssertArray(new int[] { 4, 3, 3, 1, 0 }, result);
        }
        public void TestComputeScc_real_file()
        {
            Main target = new Main();
            var result = target.ComputeScc(@".\..\..\..\UnitTests\SCC.txt");

            AssertArray(new int[] { 434821, 968, 459, 313, 211 }, result);
        }