12 lines
175 B
C
12 lines
175 B
C
|
|
#include "unity.h"
|
|
|
|
#include "algorithms.h"
|
|
|
|
void setUp(void) {}
|
|
|
|
void tearDown(void) {}
|
|
|
|
void test_algorithms_loaded(void) {
|
|
TEST_ASSERT(algorithms_c_is_loaded() == 1);
|
|
}
|