This is not an homework. But an practice to understand what are the best practices to design , implement and unit test a particular scenario and so discussion explaining why a particular approach was taken as compared to other would be really helpful from understanding point of view to gain better understanding of how to approach and deal with similar situations.
How to approach following scenario from design, implementation and unit testing perspective.
Scenario
A speaker and a listener communicate with each other. The speaker can present emotions to the listener: smile,anger, courtesy, joke, fury, etc.
The listener gives a proper response for each communication (say something, attack, defense, ignore, etc.).
Questions
- What will be the listener objects's reaction rules ?
- How would this be designed using UML and implemented by simulating it using text outputs ?
- What would be the JUnit test case for the checking proper implementation of this scenario ?