java-tutorials/testng/src/test/java/baeldung/com/RegistrationTest.java

15 lines
353 B
Java
Raw Normal View History

2017-02-18 07:31:10 +01:00
package baeldung.com;
2017-02-05 00:46:21 +05:30
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
2017-02-05 00:46:21 +05:30
import org.testng.annotations.Test;
public class RegistrationTest {
private static final Logger LOGGER = LoggerFactory.getLogger(RegistrationTest.class);
2017-02-05 00:46:21 +05:30
2017-02-11 23:57:50 +05:30
@Test
public void whenCalledFromSuite_thanOK() {
LOGGER.info("Registration successful");
2017-02-11 23:57:50 +05:30
}
2017-02-05 00:46:21 +05:30
}