diff options
author | EuAndreh <eu@euandre.org> | 2024-09-17 08:01:05 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-10-20 07:39:33 -0300 |
commit | ab1795aeb8f00b61c331ac77fdc1011ec14c5253 (patch) | |
tree | 507b72b45f23f8a1bf1a1684a842fef51f1139a8 /tests/liteq.go | |
parent | Init Go project skeleton with golite init (diff) | |
download | fiinha-ab1795aeb8f00b61c331ac77fdc1011ec14c5253.tar.gz fiinha-ab1795aeb8f00b61c331ac77fdc1011ec14c5253.tar.xz |
Initial version: first implementation
Diffstat (limited to 'tests/liteq.go')
-rw-r--r-- | tests/liteq.go | 35 |
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()) -} |