@author tag for each student.| Junit 3 | Junit 4 |
| Method names must start with "test" No imports needed Test class extends junit.framework.TestCase assertNotEquals() is not available |
Method names can be whatever you want, but you must precede them with "@Test" annotation. Must import org.junit packages. Test class doesn't have to extend anything assertNotEquals() is available |