generated from trianta/cpp-unity-template
16 lines
247 B
C++
16 lines
247 B
C++
#include <unity/unity.h>
|
|
#include <unity/unity_internals.h>
|
|
#include "sudoku.hpp"
|
|
#include "test_list.hpp"
|
|
|
|
void setUp() { ; }
|
|
void tearDown() { ; }
|
|
|
|
|
|
int main(void) {
|
|
UNITY_BEGIN();
|
|
RUN_TEST(test_SudokuEasy01);
|
|
return UNITY_END();
|
|
}
|
|
|