| module Main where | |
| import Test.HUnit | |
| --Program start | |
| --Program end | |
| -- Test cases | |
| test1 :: Test | |
| test1 = TestCase (assertEqual "for (arrayChange [1,2,4,6] [[1,3],[4,7],[6,1]])," [3,2,7,1] (arrayChange [1,2,4,6] [[1,3],[4,7],[6,1]])) | |
| test2 :: Test | |
| test2 = TestCase (assertEqual "for (arrayChange [1,2] [[1,3],[2,1],[3,2]])," [2,1] (arrayChange [1,2] [[1,3],[2,1],[3,2]])) | |
| -- Grouping test cases | |
| tests :: Test | |
| tests = TestList [TestLabel "Test1" test1] | |
| -- Running the tests | |
| main :: IO Counts | |
| main = runTestTT tests | |