speeduino/test/test_table3d_native/test_main.cpp

19 lines
337 B
C++

#include <unity.h>
#include "table3d_interpolate.cpp"
typedef uint8_t byte;
#include "table2d.ino"
#include "..\test_misc\tests_tables.cpp"
#include "..\test_misc\test_table2d.cpp"
int main(int argc, char **argv) {
UNITY_BEGIN();
testTables();
RUN_TEST(test_all_incrementing);
testTable2d();
UNITY_END();
return 0;
}