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

org.fluentlenium.adapter.spock.FluentSpecificationAdapter.groovy Maven / Gradle / Ivy

There is a newer version: 5.0.4
Show newest version
package org.fluentlenium.adapter.spock

import org.fluentlenium.adapter.DefaultSharedMutator
import org.fluentlenium.adapter.FluentTestRunnerAdapter

class FluentSpecificationAdapter extends FluentTestRunnerAdapter {

    FluentSpecificationAdapter() {
        super(new DefaultSharedMutator())
    }

    void specStarting(Class testClass, String testName) {
        super.starting(testClass, testName)
    }

    void specFinished(Class testClass, String testName) {
        super.finished(testClass, testName)
    }

    void specFailed(Throwable e, Class testClass, String testName) {
        super.failed(e, testClass, testName)
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy