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

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

package jp.vmi.junit.result;

import javax.xml.bind.annotation.XmlAttribute;

import org.apache.commons.lang3.time.DateFormatUtils;

/**
 * Test result interface. (for TestResult map in JUnitResult)
 *
 * @param  test target type.
 */
public abstract class TestResult {

    protected T testTarget;

    /**
     * Set test target.
     *
     * @param testTarget test target.
     */
    public void setTestTarget(T testTarget) {
        this.testTarget = testTarget;
    }

    /**
     * Get test name.
     *
     * @return test name.
     */
    @XmlAttribute
    public String getName() {
        return testTarget.getName();
    }

    /**
     * Get timestamp.
     *
     * @return start timestamp.
     */
    @XmlAttribute
    public String getTimestamp() {
        return DateFormatUtils.ISO_DATETIME_TIME_ZONE_FORMAT.format(testTarget.getStopWatch().getStartTimeOfUTC());
    }

    /**
     * Get duration time of test execution.
     *
     * @return time
     */
    @XmlAttribute
    public String getTime() {
        return String.format("%.3f", testTarget.getStopWatch().getDurationNanoSec() / 1000000000.0 /* ns -> sec */);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy