module TestsPublic where
import HaskellUnit

import Fac

test1 = testcase "factorial 1" "(factorial 5) falsch" 120 (factorial 5)
test2 = testcase "factorial 2" "(factorial 0) falsch" 1 (factorial 0)