summaryrefslogtreecommitdiff
path: root/tests/untls.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untls.go')
-rw-r--r--tests/untls.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/untls.go b/tests/untls.go
new file mode 100644
index 0000000..767ad31
--- /dev/null
+++ b/tests/untls.go
@@ -0,0 +1,17 @@
+package untls
+
+import (
+ g "gobang"
+)
+
+
+
+func test_Stub() {
+ g.AssertEqual(X, 1)
+}
+
+
+
+func MainTest() {
+ test_Stub()
+}