1
0

Using immutable map instead of mutables to generate parameters

This commit is contained in:
Kent Yao
2019-01-29 10:01:25 +08:00
committed by vinoth chandar
parent 7985eb72b5
commit 2b55f0751f
4 changed files with 95 additions and 55 deletions

View File

@@ -130,6 +130,24 @@
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.scalatest</groupId>
<artifactId>scalatest-maven-plugin</artifactId>
<version>1.0</version>
<configuration>
<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
<junitxml>.</junitxml>
<filereports>TestSuite.txt</filereports>
</configuration>
<executions>
<execution>
<id>test</id>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>