CardTest.java- tests for the Card classCardDeckTest.java- tests for the CardDeck classPlayerTest.java- tests for the Player classCardGameTest.java- tests for the CardGame class
CardGameTestSuite.java which runs all the tests together in one go.
JUnit 5 and a java environment Most IDE have this built in or in vsc use the respective java extensions
In IDE go to testing tab, if JUnit is properly installed all tests will show Run CardGameTestSuite to run all at once
Ensure main class files are compiled Tests create temporary files which will get cleaned up after completion multi threading tests can take a few seconds to run