forked from serenity-bdd/serenity-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
140 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Sat Jun 17 09:58:54 BST 2017 | ||
#Wed Jun 21 14:46:12 BST 2017 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-all.zip |
137 changes: 137 additions & 0 deletions
137
serenity-core/src/main/java/net/serenitybdd/core/listeners/AbstractStepListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
package net.serenitybdd.core.listeners; | ||
|
||
import net.thucydides.core.model.DataTable; | ||
import net.thucydides.core.model.Story; | ||
import net.thucydides.core.model.TestOutcome; | ||
import net.thucydides.core.steps.ExecutedStepDescription; | ||
import net.thucydides.core.steps.StepFailure; | ||
import net.thucydides.core.steps.StepListener; | ||
|
||
import java.util.Map; | ||
|
||
public abstract class AbstractStepListener implements StepListener { | ||
@Override | ||
public void testSuiteStarted(Class<?> storyClass) { | ||
|
||
} | ||
|
||
@Override | ||
public void testSuiteStarted(Story story) { | ||
|
||
} | ||
|
||
@Override | ||
public void testSuiteFinished() { | ||
|
||
} | ||
|
||
@Override | ||
public void testStarted(String description) { | ||
|
||
} | ||
|
||
@Override | ||
public void testFinished(TestOutcome result) { | ||
|
||
} | ||
|
||
@Override | ||
public void testRetried() { | ||
|
||
} | ||
|
||
@Override | ||
public void stepStarted(ExecutedStepDescription description) { | ||
|
||
} | ||
|
||
@Override | ||
public void skippedStepStarted(ExecutedStepDescription description) { | ||
|
||
} | ||
|
||
@Override | ||
public void stepFailed(StepFailure failure) { | ||
|
||
} | ||
|
||
@Override | ||
public void lastStepFailed(StepFailure failure) { | ||
|
||
} | ||
|
||
@Override | ||
public void stepIgnored() { | ||
|
||
} | ||
|
||
@Override | ||
public void stepPending() { | ||
|
||
} | ||
|
||
@Override | ||
public void stepPending(String message) { | ||
|
||
} | ||
|
||
@Override | ||
public void stepFinished() { | ||
|
||
} | ||
|
||
@Override | ||
public void testFailed(TestOutcome testOutcome, Throwable cause) { | ||
|
||
} | ||
|
||
@Override | ||
public void testIgnored() { | ||
|
||
} | ||
|
||
@Override | ||
public void testSkipped() { | ||
|
||
} | ||
|
||
@Override | ||
public void testPending() { | ||
|
||
} | ||
|
||
@Override | ||
public void testIsManual() { | ||
|
||
} | ||
|
||
@Override | ||
public void notifyScreenChange() { | ||
|
||
} | ||
|
||
@Override | ||
public void useExamplesFrom(DataTable table) { | ||
|
||
} | ||
|
||
@Override | ||
public void addNewExamplesFrom(DataTable table) { | ||
|
||
} | ||
|
||
@Override | ||
public void exampleStarted(Map<String, String> data) { | ||
|
||
} | ||
|
||
@Override | ||
public void exampleFinished() { | ||
|
||
} | ||
|
||
@Override | ||
public void assumptionViolated(String message) { | ||
|
||
} | ||
} |