From 6f95dd49f1e03c8c29e4410288fab4cb60dde1dc Mon Sep 17 00:00:00 2001 From: Darran Lofthouse Date: Mon, 23 Sep 2024 20:00:05 +0100 Subject: [PATCH] [WFCORE-7008] Add a test that does nothing. The purpose is to verify the setup and cleanup work as expected. --- .../mgmt/AbstractManagementInterfaceResourcesTestCase.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/testsuite/manualmode/src/test/java/org/wildfly/core/test/standalone/mgmt/AbstractManagementInterfaceResourcesTestCase.java b/testsuite/manualmode/src/test/java/org/wildfly/core/test/standalone/mgmt/AbstractManagementInterfaceResourcesTestCase.java index 4a01eec46f0..704c082348d 100644 --- a/testsuite/manualmode/src/test/java/org/wildfly/core/test/standalone/mgmt/AbstractManagementInterfaceResourcesTestCase.java +++ b/testsuite/manualmode/src/test/java/org/wildfly/core/test/standalone/mgmt/AbstractManagementInterfaceResourcesTestCase.java @@ -39,6 +39,11 @@ public abstract class AbstractManagementInterfaceResourcesTestCase { @Inject protected static ServerController controller; + @Test + public void testNothing() throws Exception { + runTest(60000, () -> {}); + } + /** * Test that the management interface will not accept new connections when the number of active connections reaches the * high water mark. After the number of open connections has been reduced to the low watermark it will test that connections