Lines Matching +full:temp +full:- +full:sensor
4 #include "sensor.hpp"
35 std::string temp = "temp"; member in SensorTest
49 auto sensorKey = std::make_pair(temp, five); 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()
82 auto sensorKey = std::make_pair(temp, five); 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()
113 auto sensorKey = std::make_pair(temp, five); 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()