Overview
Add unit tests for the academic calendar parser using Go's built-in testing library.
Test files being within the same package as the files being tested so that non-exported methods can be tested more easily; make sure to follow the _test.go file naming convention detailed in the linked docs.
Be sure to seek out resources for details on how to write good unit tests if you are unsure. Also make sure to check the coverage of the test because the higher the coverage, the better.
Overview
Add unit tests for the academic calendar parser using Go's built-in testing library.
Test files being within the same package as the files being tested so that non-exported methods can be tested more easily; make sure to follow the _test.go file naming convention detailed in the linked docs.
Be sure to seek out resources for details on how to write good unit tests if you are unsure. Also make sure to check the coverage of the test because the higher the coverage, the better.