This repository has been archived on 2026-02-22. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
cieter/test/test_dynarray.c

17 lines
285 B
C

#include "unity.h"
#include "cieter_dynarray.h"
void setUp(void) {}
void tearDown(void) {}
void test_init() {
CieterDynArray *arr = cieter_dynarray_init(2);
TEST_ASSERT_NOT_NULL(arr);
}
int main(void) {
UNITY_BEGIN();
RUN_TEST(test_init);
return UNITY_END();
}