(**************************************************************************
 * You can add new test cases by adding new elements to the following lists
 * Format is:
 * TEST<X>ARG(<weight>, <function_name>, <arg1>, <arg2>, ..., <argX>)
 *
 * <X> is the number of argument that the function being tested takes.
 **************************************************************************)

(* This list is for regular problems *)
let rubric =
[
     TEST0ARG(1, a) ;
     TEST0ARG(1, s) ;
     TEST1ARG(1, add_a, 13) ;
     TEST1ARG(1, greetings, "Angela") ;
     TEST1ARG(1, greetings, "Sam") ;
     TEST1ARG(1, greetstring, "Angela") ;
     TEST1ARG(1, greetstring, "Sam") ;
     TEST1ARG(1, sign, 4) ;
]
(* Note: the last entry should not be followed by a semicolon. *)

(* This list is for extra credit problems, which dont exist in this MP *)
let extra_rubric = [ ]
