summaryrefslogtreecommitdiff
path: root/tests/inproc.c
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-01-04 10:43:14 -0800
committerGarrett D'Amore <garrett@damore.org>2017-01-04 10:43:14 -0800
commit4e8b4ec4396f13665dccc03363c1378cabaefeb4 (patch)
tree83639eaa3ba2b94ad517230e3127755c15398c36 /tests/inproc.c
parent1d650869f32c56f6d49d898c38f7525191a60bd1 (diff)
downloadnng-4e8b4ec4396f13665dccc03363c1378cabaefeb4.tar.gz
nng-4e8b4ec4396f13665dccc03363c1378cabaefeb4.tar.bz2
nng-4e8b4ec4396f13665dccc03363c1378cabaefeb4.zip
Starting a common transport testing framework.
Diffstat (limited to 'tests/inproc.c')
-rw-r--r--tests/inproc.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/inproc.c b/tests/inproc.c
new file mode 100644
index 00000000..065b604b
--- /dev/null
+++ b/tests/inproc.c
@@ -0,0 +1,18 @@
+//
+// Copyright 2016 Garrett D'Amore <garrett@damore.org>
+//
+// This software is supplied under the terms of the MIT License, a
+// copy of which should be located in the distribution where this
+// file was obtained (LICENSE.txt). A copy of the license may also be
+// found online at https://opensource.org/licenses/MIT.
+//
+
+#include "convey.h"
+#include "trantest.h"
+
+
+// Inproc tests.
+
+TestMain("Inproc Transport", {
+ trantest_test_all("inproc://TEST");
+})