package plaindoll; import static org.hamcrest.CoreMatchers.containsString; import static org.junit.Assert.*; import org.junit.Test; public class WelcomerTest { private Welcomer welcomer = new Welcomer(); @Test public void welcomerSaysWelcome() { assertThat(welcomer.sayWelcome(), containsString("Welcome")); } }