Home
last modified time | relevance | path

Searched refs:getPowerRecord (Results 1 – 2 of 2) sorted by relevance

/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/dataentries/formatters/
DPowerFormatterTest.kt60 val record = getPowerRecord(listOf()) in <lambda>()
67 val record = getPowerRecord(listOf(10.2)) in <lambda>()
73 val record = getPowerRecord(listOf(10.1)) in formatA11yValue_pluralValue_returnsA11yPowerValues()
81 val record = getPowerRecord(listOf(1.0)) in formatA11yValue_singleValue_returnsA11yPowerValues()
89 val record = getPowerRecord(listOf()) in formatRecordDetails_emptyValues_returnsEmptyList()
95 val record = getPowerRecord(listOf(2.0)) in formatRecordDetails_multipleValues_returnsFormattedValues()
110 private fun getPowerRecord(samples: List<Double>): PowerRecord { in getPowerRecord() method in com.android.healthconnect.controller.tests.dataentries.formatters.PowerFormatterTest
/packages/modules/HealthFitness/tests/cts/src/android/healthconnect/cts/datatypes/
DPowerRecordTest.java302 Arrays.asList(getPowerRecord(5.0), getPowerRecord(10.0), getPowerRecord(15.0)); in testAggregation_power()
591 static PowerRecord getPowerRecord(double power) { in getPowerRecord() method in PowerRecordTest