import a2

# Fill in the fields 
# Name: (put your name here)
# Student Number: 
# CDF account:

#  CSC104h Winter 2008 Assignment 2 
#  A series of tests to ensure the quality of A2

# test 1) test factorial
#            Sample test to illustrate how to test - Describe what you are testing
#            and what your expected return value is.  When the program executes
#            you should be able to detect if it is accurate or not.
#            Try factorial with a value of 1, it should return the value 1
print "test 1 - factorial(1) should return 1, actuall returns", a2.factorial(1)
# test 2) test factorial
#            Sample test to illustrate how to test - 
#            Try factorial with a value of 6, it should return the value 720
print "test 2 - factorial(6) should return 720, actuall returns", a2.factorial(6)

# Now put your tests below.  Create a reasonable number of tests for each exercise.
# Do not create tests that duplicate things you have already tested.
# Assume that you are dealing only with integer values for this assignment and that
# only valid input is used.
