org.fluentlenium.adapter.spock.FluentSpecificationAdapter.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluentlenium-spock Show documentation
Show all versions of fluentlenium-spock Show documentation
Spock Adapter for FluentLenium
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)
}
}