diff options
author | Teddy Wing | 2023-05-18 05:55:01 +0200 |
---|---|---|
committer | Teddy Wing | 2023-05-18 05:55:01 +0200 |
commit | 3fb25b9de7f5673fe2af04606c7b35bb53f1f2bf (patch) | |
tree | 38146d6f3066bdb817da7a103dc9abac8c92caf4 /capturedrefrace_test.go | |
parent | c66cfe0f25a43687a342f3ddce5d4b081bfadc1e (diff) | |
download | gocapturedrefrace-3fb25b9de7f5673fe2af04606c7b35bb53f1f2bf.tar.bz2 |
Rename package to "capturedrefrace"
I decided I don't like the "go" prefix for a Go package name. It doesn't
make sense. Rename the module and package accordingly.
I do like the "go" prefix in the command line program, so leave it
there.
Diffstat (limited to 'capturedrefrace_test.go')
-rw-r--r-- | capturedrefrace_test.go | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/capturedrefrace_test.go b/capturedrefrace_test.go new file mode 100644 index 0000000..f4bb43d --- /dev/null +++ b/capturedrefrace_test.go @@ -0,0 +1,33 @@ +// Copyright (c) 2023 Teddy Wing +// +// This file is part of Gocapturedrefrace. +// +// Gocapturedrefrace is free software: you can redistribute it and/or +// modify it under the terms of the GNU General Public License as +// published by the Free Software Foundation, either version 3 of the +// License, or (at your option) any later version. +// +// Gocapturedrefrace is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with Gocapturedrefrace. If not, see +// <https://www.gnu.org/licenses/>. + + +package capturedrefrace_test + +import ( + "testing" + + "golang.org/x/tools/go/analysis/analysistest" + "gopkg.teddywing.com/capturedrefrace" +) + +func Test(t *testing.T) { + testdata := analysistest.TestData() + + analysistest.Run(t, testdata, capturedrefrace.Analyzer, ".") +} |