1.3. Unit Testing
LongInteger: unit tests.
Last updated
Was this helpful?
LongInteger: unit tests.
Last updated
Was this helpful?
LongInteger()
Let us create a testing class called and make a for the constructors:
L7
: methods used for unit testing must be public
.
L8
: tests the default constructor
L12-15
: tests the constructor with a string parameter.
L18-19
: tests the copy constructor.
When should we use
import static
instead ofimport
?
When you run this test, you see a prompt similar to the followings:
multiply()
Let us define another method for testing the multiply()
method:
L11-12
: a
can hold the integer 152415787517146788750190521
(), which is much larger than the maximum value of long
that is .
compareTo()
Let us define a method for testing the compareTo()
method:
L6
: the annotation indicates that this method is used for unit testing.
: compares two parameters where the left parameter is the expected value and the right parameter is the actual value.
: passes if the parameter returns true.
provides an effective way of ensuring the correctness of your program. Making a unit test for every method is standard practice, although this standard is often dismissed due to time pressure.