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

net.serenitybdd.junit.runners.TestClassAnnotations Maven / Gradle / Ivy

There is a newer version: 4.2.9
Show newest version
package net.serenitybdd.junit.runners;

import net.thucydides.core.annotations.TestCaseAnnotations;
import org.junit.runners.model.TestClass;

/**
 * Created by john on 4/02/2016.
 */
public class TestClassAnnotations {


    private final TestClass testClass;

    public TestClassAnnotations(Class testClass) {
        this.testClass = new TestClass(testClass);
    }

    public static TestClassAnnotations forTestClass(Class testClass) {
        return new TestClassAnnotations(testClass);
    }

    public boolean toUseAUniqueSession() {
        return TestCaseAnnotations.isUniqueSession(testClass.getJavaClass());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy