2017-02-18 07:31:10 +01:00
|
|
|
package baeldung.com;
|
2017-02-05 00:46:21 +05:30
|
|
|
|
2017-02-18 22:56:41 +01:00
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
2017-02-05 00:46:21 +05:30
|
|
|
import org.testng.annotations.Test;
|
|
|
|
|
|
|
|
|
|
public class RegistrationTest {
|
2017-02-18 22:56:41 +01:00
|
|
|
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
|
2017-02-18 22:56:41 +01:00
|
|
|
public void whenCalledFromSuite_thanOK() {
|
|
|
|
|
LOGGER.info("Registration successful");
|
2017-02-11 23:57:50 +05:30
|
|
|
}
|
2017-02-05 00:46:21 +05:30
|
|
|
}
|