summaryrefslogtreecommitdiff
path: root/test/fixtures/i2c_fixture.hpp
blob: 54794591d5a5518edbcf75bea6151946e8a121b3 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include "catch2/catch.hpp"
#include "i2c.hpp"

class I2CFixture {
 public:
  I2CFixture() { REQUIRE(drivers::init_i2c() == ESP_OK); }
  ~I2CFixture() { drivers::deinit_i2c(); }
};