2017-03-01 16:47:07 +05:30
|
|
|
package baeldung.com;
|
|
|
|
|
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
import org.testng.annotations.Test;
|
|
|
|
|
|
|
|
|
|
public class RegistrationTest {
|
|
|
|
|
private static final Logger LOGGER = LoggerFactory.getLogger(RegistrationTest.class);
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
public void whenCalledFromSuite_thanOK() {
|
|
|
|
|
LOGGER.info("Registration successful");
|
|
|
|
|
}
|
|
|
|
|
}
|