wideband/test/tests/test_sampler.cpp

21 lines
256 B
C++
Raw Normal View History

2023-08-09 12:26:56 -07:00
#include <gtest/gtest.h>
2023-08-09 12:42:16 -07:00
#include "sampling.h"
2023-08-09 13:24:21 -07:00
#include "port.h"
SensorType GetSensorType()
{
return SensorType::LSU49;
}
int GetESRSupplyR()
{
// Nernst AC injection resistor value
return 22000;
}
2023-08-09 12:42:16 -07:00
2023-08-09 12:26:56 -07:00
TEST(Sampler, Basic)
{
2023-08-09 12:42:16 -07:00
Sampler dut;
2023-08-09 12:26:56 -07:00
}