import org.holmosframework.core.HolmosBaseTest;
import org.holmosframework.test.annotations.HolmosBeforeClass;
import org.holmosframework.test.annotations.HolmosTestCase;
import org.holmosframework.test.annotations.HolmosTestStep;
import org.holmosframework.test.configurations.annotations.Configuration;
@Configuration("holmos.properties")
public class MyLibraryTest extends HolmosBaseTest {
@HolmosBeforeClass
public static void setup() {
}
public void testLogin() {
}
public void enterUsernameAndPassword() {
}
public void clickLoginButton() {
}
}