aboutsummaryrefslogtreecommitdiff
path: root/src/tests/uuid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/uuid.cpp')
-rw-r--r--src/tests/uuid.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/tests/uuid.cpp b/src/tests/uuid.cpp
new file mode 100644
index 0000000..4544543
--- /dev/null
+++ b/src/tests/uuid.cpp
@@ -0,0 +1,14 @@
1#include <bu/uuid.h>
2#include <bu/sio.h>
3
4using namespace Bu;
5
6int main()
7{
8 Uuid i = Uuid::gen();
9
10 sio << i.toString() << sio.nl;
11
12 return 0;
13}
14