Question
public class TestWordCounter { // TODO complete this test class // TODO declare a reference to the SUT (system under test), i.e., WordCounter @Before public
public class TestWordCounter { // TODO complete this test class // TODO declare a reference to the SUT (system under test), i.e., WordCounter @Before public void setUp() { // TODO create the SUT instance } @After public void tearDown() { // TODO set the SUT instance to null } @Test public void testGetCountEmpty() { // TODO verify that the SUT initially returns an empty map } @Test public void testGetCountNonEmpty() { // TODO run the SUT on a specific String iterator with some repeated words, // then use assertions to verify the correct counts // do this for at least two words in the iterator and two not in the iterator fail(); } }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started