Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
df7c7e2b9f | ||
|
|
28cd218bf7 |
@@ -23,6 +23,7 @@ repositories {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.google.guava:guava:32.1.2-jre'
|
implementation 'com.google.guava:guava:32.1.2-jre'
|
||||||
|
implementation 'org.apache.commons:commons-lang3:3.13.0'
|
||||||
// mandatory dependencies for using Spock
|
// mandatory dependencies for using Spock
|
||||||
implementation platform('org.apache.groovy:groovy-bom:4.0.15')
|
implementation platform('org.apache.groovy:groovy-bom:4.0.15')
|
||||||
implementation 'org.apache.groovy:groovy'
|
implementation 'org.apache.groovy:groovy'
|
||||||
|
|||||||
@@ -84,6 +84,11 @@
|
|||||||
<artifactId>guava</artifactId>
|
<artifactId>guava</artifactId>
|
||||||
<version>32.1.2-jre</version>
|
<version>32.1.2-jre</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.commons</groupId>
|
||||||
|
<artifactId>commons-lang3</artifactId>
|
||||||
|
<version>3.13.0</version>
|
||||||
|
</dependency>
|
||||||
<!-- Mandatory dependencies for using Spock -->
|
<!-- Mandatory dependencies for using Spock -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.spockframework</groupId>
|
<groupId>org.spockframework</groupId>
|
||||||
|
|||||||
+4
@@ -9,6 +9,10 @@ public class SimpleTestReportFormatter extends AbstractTestReportFormatter {
|
|||||||
final private String passedIcon = "✓";
|
final private String passedIcon = "✓";
|
||||||
final private String failedIcon = "⨯";
|
final private String failedIcon = "⨯";
|
||||||
|
|
||||||
|
public SimpleTestReportFormatter() {
|
||||||
|
super(null, false);
|
||||||
|
}
|
||||||
|
|
||||||
public SimpleTestReportFormatter(ArrayList<AbstractMap.SimpleEntry<String, String>> testMetaData, boolean isPassed) {
|
public SimpleTestReportFormatter(ArrayList<AbstractMap.SimpleEntry<String, String>> testMetaData, boolean isPassed) {
|
||||||
super(testMetaData, isPassed);
|
super(testMetaData, isPassed);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user