class AnotherSensorsTest : public ::testing::Test
{
  protected:
    void SetUp() override
    {
        // テスト・ケース開始前の処理をここに書く
        sensors[0] = {{"A", get_sensor_A_value}, 1};
        sensors[1] = {{"C", get_sensor_C_value}, 2};
    }

    void TearDown() override
    {
        // テスト・ケース終了後の処理をここに書く
    }
    static const size_t max = 2;
    sensor_config_t sensors[max];
};
