All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mmarquee.demo.TestBase Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
package mmarquee.demo;

import mmarquee.automation.controls.AutomationBase;
import org.apache.log4j.Logger;

/**
 * @author Mark Humphreys
 * Date 19/05/2016.
 */
public class TestBase {

    protected Logger logger = Logger.getLogger(AutomationBase.class.getName());

    protected void rest() {
        try {
            Thread.sleep(1500);
        } catch (Exception ex) {
            logger.info("Interrupted");
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy