stub some tests

This commit is contained in:
Matthew Kennedy 2023-08-09 12:26:56 -07:00
parent b73770fe85
commit d549b42629
3 changed files with 14 additions and 0 deletions

View File

@ -24,6 +24,8 @@ CPPSRC += \
gtest-all.cpp \
gmock-all.cpp \
gtest_main.cpp \
tests/test_sampler.cpp \
tests/test_heater.cpp \
INCDIR += \
$(PROJECT_DIR)/googletest/googlemock/ \

View File

@ -0,0 +1,6 @@
#include <gtest/gtest.h>
TEST(Heater, Basic)
{
}

View File

@ -0,0 +1,6 @@
#include <gtest/gtest.h>
TEST(Sampler, Basic)
{
}