Skip to content

Commit e183272

Browse files
committed
Mark functional tests as integration tests
1 parent b92c7a0 commit e183272

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

pom.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@
199199
<argLine>${surefireArgLine}</argLine>
200200
<excludes>
201201
<exclude>**/*IntegrationTests.java</exclude>
202+
<exclude>**/*FunctionalTests.java</exclude>
202203
</excludes>
203204
</configuration>
204205
</plugin>
@@ -209,6 +210,7 @@
209210
<configuration>
210211
<includes>
211212
<include>**/*IntegrationTests.java</include>
213+
<include>**/*FunctionalTests.java</include>
212214
</includes>
213215
</configuration>
214216
<executions>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
* @author Mahmoud Ben Hassine
6666
*/
6767
@EnabledForJreRange(min = JRE.JAVA_21)
68-
public class VirtualThreadsSupportTests {
68+
public class VirtualThreadsSupportFunctionalTests {
6969

7070
@Test
7171
public void testJobLaunchingWithVirtualThreads() throws Exception {
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
*
4747
*/
4848
@SuppressWarnings("removal")
49-
class RemoteLauncherTests {
49+
class RemoteLauncherFunctionalTests {
5050

51-
private static final Log logger = LogFactory.getLog(RemoteLauncherTests.class);
51+
private static final Log logger = LogFactory.getLog(RemoteLauncherFunctionalTests.class);
5252

5353
private static final List<Exception> errors = new ArrayList<>();
5454

0 commit comments

Comments
 (0)