blob: 5df855ffa56309af7e4bdbc999502581a4634139 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "./test_runner.h"
#include "unity.h"
void setUp(void) {}
void tearDown(void) {}
int main(void) {
UNITY_BEGIN();
test_runner_algo_hash();
return UNITY_END();
}
|