BAEL-183 - refactoring and moving testng to dedicated module

This commit is contained in:
slavisa-baeldung
2017-02-18 22:56:41 +01:00
parent aef624dd8b
commit 333953b204
17 changed files with 172 additions and 126 deletions

View File

@@ -1,12 +1,14 @@
package baeldung.com;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.testng.annotations.Test;
public class SignInTest {
private static final Logger LOGGER = LoggerFactory.getLogger(SignInTest.class);
@Test
public void givenUsername_ifValid_thenCorrect() {
public void whenCalledFromSuite_thanOK() {
LOGGER.info("SignIn successful");
}
}