Files
netology-devops-teamcity-ex…/src/test/java/hello/WelcomerTest.java
Alexey Metlyakov c7b8ef7a18 fix all
2021-03-14 16:47:29 +03:00

17 lines
324 B
Java

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"));
}
}