Add dict tests

This commit is contained in:
2022-08-15 17:24:31 +03:00
parent 8186b7dc34
commit 1f7ef91850
11 changed files with 220 additions and 5 deletions
+15
View File
@@ -0,0 +1,15 @@
/* 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);
dict_t x;
dict_init(&x);
visual_push(&x, random_uint8()%17 + 16);
visual_remove(&x);
}