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

se.redmind.rmtest.selenium.livestream.LiveTestShutdownHook Maven / Gradle / Ivy

There is a newer version: 2.8.3
Show newest version
package se.redmind.rmtest.selenium.livestream;

public class LiveTestShutdownHook implements Runnable {

    private final RmReportConnection con;

    public LiveTestShutdownHook(RmReportConnection con) {
        this.con = con;
    }

    @Override
    public void run() {
        con.sendSuiteFinished();
        con.sendClose();
        if (con.isConnected()) {
            con.close();
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy