init test framework

This commit is contained in:
2023-08-09 14:37:56 +02:00
parent 984c1891e1
commit a9f09960c4
3 changed files with 37 additions and 6 deletions
+9
View File
@@ -0,0 +1,9 @@
#include "route.h"
#include <unity.h>
#include <iostream>
void testCourseCalculation(void) {
Point point;
std::cout << "Hello world from Test" << std::endl;
TEST_ASSERT_EQUAL_INT(20, 20);
}