-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unit testing #18
Comments
Reviewing best practices (eg Baeldung and Unit Testing Principles, Practices, and Patterns by Khorikov, restructuring the project directory seems necessary. The question of how to ensure that the python scripts and the java project are made maximally accessible is unclear to me and I'm going to do a bit more reading about it. |
I've done a lot of refactoring, and it's probably worth us having a review session on how to rebase branches for merging purposes! |
Go through and make these tests parameterized. e.g. import static org.junit.Assert.assertTrue; import java.util.Arrays; import org.junit.Test; @RunWith(Parameterized.class)
} |
we have no unit testing suite, which is bad practice and makes merging the branches hazardous.
The text was updated successfully, but these errors were encountered: