summaryrefslogtreecommitdiff
path: root/tests/liteq.go
diff options
context:
space:
mode:
Diffstat (limited to 'tests/liteq.go')
-rw-r--r--tests/liteq.go35
1 files changed, 35 insertions, 0 deletions
diff --git a/tests/liteq.go b/tests/liteq.go
new file mode 100644
index 0000000..86d1bef
--- /dev/null
+++ b/tests/liteq.go
@@ -0,0 +1,35 @@
+package q
+
+import (
+ "os"
+ "testing"
+ "testing/internal/testdeps"
+
+ g "gobang"
+)
+
+
+
+func TestX(t *testing.T) {
+ g.AssertEqual(1, 1)
+}
+
+
+
+func MainTest() {
+ tests := []testing.InternalTest {
+ { "TestX", TestX },
+ }
+
+ benchmarks := []testing.InternalBenchmark {}
+ fuzzTargets := []testing.InternalFuzzTarget {}
+ examples := []testing.InternalExample {}
+ m := testing.MainStart(
+ testdeps.TestDeps {},
+ tests,
+ benchmarks,
+ fuzzTargets,
+ examples,
+ )
+ os.Exit(m.Run())
+}