I was wondering what other groups are doing for their JUnit test cases for their projects. Our group is doing it with the input parsing.
Our group was also considering the input parsing. Another simpler one could be the creation of a "course" object, or however you're storing each set of times/days/prof/etc as an object.
You will likely want to create a test case for every method you create. The exact number of cases will differ between groups depending on the way their source code is modulated. The more thorough the better.
I think there should be tests for every class and method you have in your code.
Also, the input parsing is very important. So maybe try different variations of the class schedule to test the parsing.