import static org.junit.Assert.*;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;

public class HelloJUnitTest {

	private HelloJUnit hi;

	//@Test
	public HelloJUnitTest() {
	}

	@Before
	public void setUp() {

		hi = new HelloJUnit();

	}

	@Test
	public void testSay() {
		assertEquals("Hello JUnit!", hi.say());

	}

	@Test
	public void testShout() {

		assertEquals("!!!HELLO JUNIT!!!", hi.shout());

	}

	@Test
	public void testWhisper() {

		assertEquals("... hello JUnit ...", hi.whisper());

	}

	@After
	public void tearDown() {

		hi = null;

	}

}
