Skip to content

Commit a0b04f7

Browse files
committed
Added delegated test methods
Signed-off-by: dhoard <[email protected]>
1 parent 00e8cdd commit a0b04f7

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

integration_test_suite/integration_tests/src/test/java/io/prometheus/jmx/test/http/authentication/AuthenticatorClassTest.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
import io.prometheus.jmx.test.common.ExporterTestEnvironment;
2121
import io.prometheus.jmx.test.support.JmxExporterMode;
2222
import java.util.stream.Stream;
23+
24+
import org.verifyica.api.ArgumentContext;
2325
import org.verifyica.api.Verifyica;
2426

2527
public class AuthenticatorClassTest extends BasicAuthenticationPlaintextTest {
@@ -34,4 +36,29 @@ public static Stream<ExporterTestEnvironment> arguments() {
3436
.getName()
3537
.contains(JmxExporterMode.JavaAgent.name()));
3638
}
39+
40+
@Verifyica.Test
41+
public void testHealthy(ArgumentContext argumentContext) {
42+
super.testHealthy(argumentContext);
43+
}
44+
45+
@Verifyica.Test
46+
public void testMetrics(ArgumentContext argumentContext) {
47+
super.testMetrics(argumentContext);
48+
}
49+
50+
@Verifyica.Test
51+
public void testMetricsOpenMetricsFormat(ArgumentContext argumentContext) {
52+
super.testMetricsOpenMetricsFormat(argumentContext);
53+
}
54+
55+
@Verifyica.Test
56+
public void testMetricsPrometheusFormat(ArgumentContext argumentContext) {
57+
super.testMetricsPrometheusFormat(argumentContext);
58+
}
59+
60+
@Verifyica.Test
61+
public void testMetricsPrometheusProtobufFormat(ArgumentContext argumentContext) {
62+
super.testMetricsPrometheusProtobufFormat(argumentContext);
63+
}
3764
}

0 commit comments

Comments
 (0)