I am a beginner in Java and trying to practice. I want to write a basic text based noughts and crosses game in java without any GUI. I want to test if it works by writing unit tests to check if they pass. I don't want any answers but just want guidance on how to go about doing this. This is what I have decided so far:
- Have the following classes:
GameTest,Game,BoardandPlayer(have two instances of this) - Use an array for the board.
I would appreciate if anyone would have any suggestions on how i could improve or ideas on how to do it.
Thanks