Compare commits

...
2 Commits
Author SHA1 Message Date
KKlochko df7c7e2b9f Add default constructor for SimpleTestReportFormatter.
continuous-integration/drone/tag Build is passing
2023-10-07 20:07:31 +03:00
KKlochko 28cd218bf7 Add Apache Commons Lang library. 2023-10-07 20:05:45 +03:00
3 changed files with 10 additions and 0 deletions
+1
View File
@@ -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'
+5
View File
@@ -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>
@@ -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);
} }