10 lines
203 B
C++
10 lines
203 B
C++
#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);
|
|
}
|