Stay organized with collections
Save and categorize content based on your preferences.
DeviceJUnit4ClassRunner.TestMetrics
public
static
class
DeviceJUnit4ClassRunner.TestMetrics
extends ExternalResource
java.lang.Object
|
↳ |
org.junit.rules.ExternalResource
|
|
↳ |
com.android.tradefed.testtype.DeviceJUnit4ClassRunner.TestMetrics
|
Implementation of ExternalResource
and TestRule
. This rule allows to log
metrics during a test case (inside @Test). It guarantees that the metrics map is cleaned
between tests, so the same rule object can be re-used.
Example:
@Rule
public TestMetrics metrics = new TestMetrics();
@Test
public void testFoo() {
metrics.addTestMetric("key", "value");
metrics.addTestMetric("key2", "value2");
}
@Test
public void testFoo2() {
metrics.addTestMetric("key3", "value3");
}
Summary
Public methods |
void
|
addTestMetric(String key, MetricMeasurement.Metric metric)
Log a metric entry in proto format for the test case.
|
void
|
addTestMetric(String key, String value)
Log a metric entry for the test case.
|
Statement
|
apply(Statement base, Description description)
|
Public constructors
TestMetrics
public TestMetrics ()
Public methods
addTestMetric
public void addTestMetric (String key,
MetricMeasurement.Metric metric)
Log a metric entry in proto format for the test case. Each key within a test case must be
unique otherwise it will override the previous value.
Parameters |
key |
String : The key of the metric. |
metric |
MetricMeasurement.Metric : The value associated to the key. |
addTestMetric
public void addTestMetric (String key,
String value)
Log a metric entry for the test case. Each key within a test case must be unique
otherwise it will override the previous value.
Parameters |
key |
String : The key of the metric. |
value |
String : The value associated to the key. |
apply
public Statement apply (Statement base,
Description description)
Parameters |
base |
Statement |
description |
Description |
Protected methods
after
protected void after ()
before
protected void before ()
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2023-03-08 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-03-08 UTC."],[],[]]