Skip to content

Commit

Permalink
Added delegated test methods (#1011)
Browse files Browse the repository at this point in the history
Signed-off-by: dhoard <[email protected]>
  • Loading branch information
dhoard authored Oct 20, 2024
1 parent 00e8cdd commit d31583b
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
import io.prometheus.jmx.test.common.ExporterTestEnvironment;
import io.prometheus.jmx.test.support.JmxExporterMode;
import java.util.stream.Stream;

import org.verifyica.api.ArgumentContext;
import org.verifyica.api.Verifyica;

public class AuthenticatorClassTest extends BasicAuthenticationPlaintextTest {
Expand All @@ -34,4 +36,29 @@ public static Stream<ExporterTestEnvironment> arguments() {
.getName()
.contains(JmxExporterMode.JavaAgent.name()));
}

@Verifyica.Test
public void testHealthy(ArgumentContext argumentContext) {
super.testHealthy(argumentContext);
}

@Verifyica.Test
public void testMetrics(ArgumentContext argumentContext) {
super.testMetrics(argumentContext);
}

@Verifyica.Test
public void testMetricsOpenMetricsFormat(ArgumentContext argumentContext) {
super.testMetricsOpenMetricsFormat(argumentContext);
}

@Verifyica.Test
public void testMetricsPrometheusFormat(ArgumentContext argumentContext) {
super.testMetricsPrometheusFormat(argumentContext);
}

@Verifyica.Test
public void testMetricsPrometheusProtobufFormat(ArgumentContext argumentContext) {
super.testMetricsPrometheusProtobufFormat(argumentContext);
}
}

0 comments on commit d31583b

Please sign in to comment.