Create a Tic Tac Toe game in Java, to run on the command line, which:
- Allows a user to play a Human vs Human game.
- Allows a user to play a Human vs Computer game.
- Allows the user to save an in progress game and reload it later.
This application is written in Java version 12.0.1.
This application uses Gradle for build automation and JUnit for testing.
- Tests can be run using the command
gradle testor./gradlew test(depending on whether you are using gradle wrapper). - You can view the test report by opening the HTML output file, located at
./build/reports/tests/test/index.html.
- Type
gradle clean buildor./gradlew clean buildto compile. - Type
gradle --console plain runor./gradlew --console plain runto run the game.