Challenge: PigLatin Game Domain Layer
Implement a PigLatin game in Java to translate words and allow players to guess. Adhere to proper Java conventions and conduct comprehensive testing using Mockito.
We'll cover the following...
Task and requirements
You’re tasked with implementing the domain layer of a PigLatin game in Java. The game involves translating words into PigLatin and allowing players to guess the translated words. Your implementation should include several classes to manage the game flow, translate words, and handle player guesses.
Your implementation should follow these rules:
Implement the
PigLatinGame
class, which manages the game flow, including starting a new game and ...