Each function/non-constructor or non-simple-accessor method that you
write is expected to have
a corresponding testing function/method,
whose name is the name of the function/method followed by
Test and
which uses
the functions testHeader(),
expected(), and actual()
as discussed
in class and in the readings to test that function appropriately.
For a function, the test function should follow the function; for
a method that is part of a class, the corresponding test method can
go in the test class for that class.
This testing function/method should be preceded by at least:
/* Examples/Tests:
----------------------------------------------------------------------*/
...or...
/*-----------------------------------------------------------------------
Test method for methodName()
-----------------------------------------------------------------------*/
...although you may add to this if you wish.