Label hint tests (#1293)

* label test

* adjusted it test filter

* label test added
This commit is contained in:
René Zubcevic
2022-07-15 08:17:11 +02:00
committed by GitHub
parent 16af4272a5
commit 4fc03381a8
9 changed files with 103 additions and 12 deletions

View File

@ -293,7 +293,7 @@
<goal>start</goal>
</goals>
<configuration>
<workingDir></workingDir>
<workingDir>${project.build.directory}</workingDir>
<arguments>
<argument>java</argument>
<argument>-jar</argument>
@ -582,7 +582,7 @@
<logback.configurationFile>${basedir}/src/test/resources/logback-test.xml</logback.configurationFile>
</systemPropertyVariables>
<argLine>-Xmx512m -Dwebgoatport=${webgoat.port} -Dwebwolfport=${webwolf.port}</argLine>
<includes>**/*IntegrationTest.java</includes>
<includes>org/owasp/webgoat/*Test</includes>
</configuration>
<executions>
<execution>
@ -609,6 +609,8 @@
</argLine>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
<exclude>src/it/java</exclude>
<exclude>org/owasp/webgoat/*Test</exclude>
</excludes>
</configuration>
</plugin>