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, 0 insertions, 35 deletions
diff --git a/tests/liteq.go b/tests/liteq.go
deleted file mode 100644
index 86d1bef..0000000
--- a/tests/liteq.go
+++ /dev/null
@@ -1,35 +0,0 @@
-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())
-}