first bits of a dynamc lib

This commit is contained in:
Dustin J. Mitchell
2022-01-22 22:48:40 +00:00
parent 8576e7ffa7
commit 33f5f056b1
13 changed files with 6942 additions and 1 deletions

7
binding-tests/uuid.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include "doctest.h"
#include "taskchampion.h"
TEST_CASE("creating a UUID") {
StoragePtr *storage = storage_new_in_memory();
storage_free(storage);
}