blob: 833ff898e3523a78f599c0c657ef781d467649e4 [file] [log] [blame]
// Copyright 2024 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 modernize_test
import (
"testing"
"golang.org/x/tools/go/analysis/analysistest"
"golang.org/x/tools/gopls/internal/analysis/modernize"
)
func Test(t *testing.T) {
modernize.EnableSlicesDelete = true
modernize.EnableAppendClipped = true
analysistest.RunWithSuggestedFixes(t, analysistest.TestData(), modernize.Analyzer,
"appendclipped",
"bloop",
"efaceany",
"fmtappendf",
"forvar",
"mapsloop",
"minmax",
"omitzero",
"rangeint",
"slicescontains",
"slicesdelete",
"stringscutprefix",
"stringscutprefix/bytescutprefix",
"splitseq",
"fieldsseq",
"sortslice",
"testingcontext",
"waitgroup",
)
}