working with one of the students to do some junit testing. Fortunately, it’s testing for some computational code, so don’t need to do a lot of work with Mockito, etc (this is a good article on setting up for that kind of testing: https://firstmncsa.org/category/tutorial/)
I was able to get junit tests to run at build time by looking at https://www.chiefdelphi.com/t/how-to-set-up-junit-with-wpilib/371696/5 , https://github.com/robototes/2020_Template.
Is there a way to run a single test without rerunning a build (which runs all tests?). In eclipse, I can just right click on a test and run it…