aboutsummaryrefslogtreecommitdiffstats
path: root/capturedrefrace_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'capturedrefrace_test.go')
-rw-r--r--capturedrefrace_test.go33
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, ".")
+}