23 lines
263 B
C++
23 lines
263 B
C++
#include "courseCalculation.hpp"
|
|
#include <unity.h>
|
|
|
|
void setUp() {
|
|
|
|
}
|
|
|
|
void tearDown() {
|
|
|
|
}
|
|
|
|
void uselessTest() {
|
|
TEST_ASSERT_EQUAL(12, 12);
|
|
}
|
|
|
|
int main(int argc, char **argv) {
|
|
UNITY_BEGIN();
|
|
RUN_TEST(testCourseCalculation);
|
|
UNITY_END();
|
|
|
|
return 0;
|
|
}
|