Lines Matching full:volts

58     // Test where volts value specified  in TEST()
60 std::optional<double> volts{1.3}; in TEST() local
66 Configuration configuration(volts, std::move(actions)); in TEST()
72 // Test where volts value not specified in TEST()
74 std::optional<double> volts{}; in TEST() local
79 Configuration configuration(volts, std::move(actions)); in TEST()
88 // Test where works: Volts value not specified in TEST()
108 // Create Configuration with no volts value specified in TEST()
109 std::optional<double> volts{}; in TEST() local
113 std::make_unique<Configuration>(volts, std::move(actions)); in TEST()
142 // Test where works: Volts value specified in TEST()
147 EXPECT_CALL(journal, logDebug("Configuring vdd_reg: volts=1.300000")) in TEST()
151 // Create PMBusWriteVoutCommandAction. Do not specify a volts value in TEST()
154 // Linear format volts value = (1.3 / 2^(-8)) = 332.8 = 333 = 0x014D. in TEST()
155 std::optional<double> volts{}; in TEST() local
158 volts, pmbus_utils::VoutDataFormat::linear, -8, false); in TEST()
169 // Create Configuration with volts value 1.3V in TEST()
235 // Create Configuration with no volts value specified in TEST()
236 std::optional<double> volts{}; in TEST() local
240 std::make_unique<Configuration>(volts, std::move(actions)); in TEST()
273 // Test where works: Volts value not specified in TEST()
293 // Create Configuration with no volts value specified in TEST()
294 std::optional<double> volts{}; in TEST() local
298 std::make_unique<Configuration>(volts, std::move(actions)); in TEST()
338 // Test where works: Volts value specified in TEST()
343 EXPECT_CALL(journal, logDebug("Configuring vio2: volts=1.300000")) in TEST()
347 // Create PMBusWriteVoutCommandAction. Do not specify a volts value in TEST()
350 // Linear format volts value = (1.3 / 2^(-8)) = 332.8 = 333 = 0x014D. in TEST()
351 std::optional<double> volts{}; in TEST() local
354 volts, pmbus_utils::VoutDataFormat::linear, -8, false); in TEST()
365 // Create Configuration with volts value 1.3V in TEST()
442 // Create Configuration with no volts value specified in TEST()
443 std::optional<double> volts{}; in TEST() local
447 std::make_unique<Configuration>(volts, std::move(actions)); in TEST()
490 std::optional<double> volts{1.3}; in TEST() local
500 Configuration configuration(volts, std::move(actions)); in TEST()
508 // Test where volts value specified in TEST()
510 std::optional<double> volts{3.2}; in TEST() local
515 Configuration configuration(volts, std::move(actions)); in TEST()
520 // Test where volts value not specified in TEST()
522 std::optional<double> volts{}; in TEST() local
527 Configuration configuration(volts, std::move(actions)); in TEST()