Skip to content

Commit

Permalink
build: Fix tests not being run
Browse files Browse the repository at this point in the history
  • Loading branch information
SMadani committed Jun 26, 2024
1 parent 3306ffd commit 5e6e47f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
11 changes: 2 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -118,27 +118,20 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<includes>
<include>**/*Test.kt</include>
</includes>
<useSystemClassLoader>false</useSystemClassLoader>
<includeJUnit5Engines>true</includeJUnit5Engines>
<argLine>-Djava.security.manager=allow</argLine>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<executions>
<execution>
<id>jacoco-init</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<id>jacoco-report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
Expand Down
2 changes: 1 addition & 1 deletion src/test/kotlin/com/vonage/client/kt/VonageTest.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.vonage.client.kt

import org.junit.jupiter.api.Test
import kotlin.test.assertNotNull
import kotlin.test.*

class VonageTest {

Expand Down

0 comments on commit 5e6e47f

Please sign in to comment.