libcdsb/tests/src/map/main.c

16 lines
358 B
C
Raw Normal View History

2022-06-02 22:23:01 +03:00
/* This software is licensed by the MIT License, see LICENSE file */
/* Copyright © 2022 Gregory Lirent */
#include "plug.h"
int main(int argc, char** argv) {
test_init(argc, argv);
2022-06-08 10:52:29 +03:00
2022-06-10 20:50:20 +03:00
map_t x;
2022-06-08 10:52:29 +03:00
2022-06-10 20:50:20 +03:00
map_init(&x, random_uint8()%VTYPE_LDOUBLE + 1);
visual_push(&x, random_uint8()%17 + 16);
visual_remove(&x);
2022-06-02 22:23:01 +03:00
}