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

com.testfabrik.webmate.javasdk.testmgmt.TestSession Maven / Gradle / Ivy

There is a newer version: 0.56
Show newest version
package com.testfabrik.webmate.javasdk.testmgmt;

import com.testfabrik.webmate.javasdk.WebmateAPISession;

/**
 * Facade for a (running or finished) TestSession
 */
public class TestSession {

    private WebmateAPISession session;
    private TestSessionId id;

    TestSession(TestSessionId id, WebmateAPISession session) {
        this.id = id;
        this.session = session;
    }

    /**
     * Id of TestSession.
     */
    public TestSessionId getId() {
        return id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy