blob: 1759dc1db99b2e83425d3cf2965dfc1639d376a1 [file] [log] [blame]
// Copyright 2025 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package maprange_test
import (
"golang.org/x/tools/go/analysis/analysistest"
"golang.org/x/tools/gopls/internal/analysis/maprange"
"golang.org/x/tools/internal/testfiles"
"path/filepath"
"testing"
)
func TestBasic(t *testing.T) {
dir := testfiles.ExtractTxtarFileToTmp(t, filepath.Join(analysistest.TestData(), "basic.txtar"))
analysistest.RunWithSuggestedFixes(t, dir, maprange.Analyzer, "maprange")
}
func TestOld(t *testing.T) {
dir := testfiles.ExtractTxtarFileToTmp(t, filepath.Join(analysistest.TestData(), "old.txtar"))
analysistest.RunWithSuggestedFixes(t, dir, maprange.Analyzer, "maprange")
}