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

jp.vmi.junit.result.ITestTarget Maven / Gradle / Ivy

package jp.vmi.junit.result;

import jp.vmi.selenium.selenese.utils.StopWatch;

/**
 * Test target interface.
 */
public interface ITestTarget {

    /**
     * Get test-case name.
     *
     * @return test-case name.
     */
    String getName();

    /**
     * Is error instance?
     *
     * @return true if this is error instance.
     */
    boolean isError();

    /**
     * Get stop watch.
     *
     * @return stop watch.
     */
    StopWatch getStopWatch();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy