Lines Matching +full:sensor +full:- +full:gain
4 #include "sensor.hpp"
59 /* Always calls GAIN and OFFSET, can use ON_CALL instead of EXPECT_CALL */ in TEST_F()
65 auto sensor = in TEST_F() local
66 std::make_unique<sensor::Sensor>(sensorKey, hwmonio_mock.get(), path); in TEST_F()
67 EXPECT_FALSE(sensor == nullptr); in TEST_F()
96 /* Always calls GAIN and OFFSET, can use ON_CALL instead of EXPECT_CALL */ in TEST_F()
102 auto sensor = in TEST_F() local
103 std::make_unique<sensor::Sensor>(sensorKey, hwmonio_mock.get(), path); in TEST_F()
104 EXPECT_FALSE(sensor == nullptr); in TEST_F()
109 /* Construct a sensor that has a gain and offset, then verify they are used in TEST_F()
129 auto sensor = in TEST_F() local
130 std::make_unique<sensor::Sensor>(sensorKey, hwmonio_mock.get(), path); in TEST_F()
131 EXPECT_FALSE(sensor == nullptr); in TEST_F()
134 double resultValue = sensor->adjustValue(startingValue); in TEST_F()