AT005

package
v0.0.0-...-9d70a79 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 20, 2022 License: MPL-2.0 Imports: 6 Imported by: 0

README

AT005

The AT005 analyzer reports test function names (Test prefix) that contain resource.Test() or resource.ParallelTest(), which should be named with the TestAcc prefix.

Flagged Code

func TestExampleThing_basic(t *testing.T) {
  resource.Test(/* ... */)
}

func TestExampleWidget_basic(t *testing.T) {
  resource.ParallelTest(/* ... */)
}

Passing Code

func TestAccExampleThing_basic(t *testing.T) {
  resource.Test(/* ... */)
}

func TestAccExampleWidget_basic(t *testing.T) {
  resource.ParallelTest(/* ... */)
}

Ignoring Reports

Singular reports can be ignored by adding the a //lintignore:AT005 Go code comment at the end of the offending line or on the line immediately proceding, e.g.

//lintignore:AT005
func TestExampleThing_basic(t *testing.T) {
  resource.Test(/* ... */)
}

Documentation

Overview

Package AT005 defines an Analyzer that checks for acceptance tests prefixed with Test but not TestAcc

Index

Constants

View Source
const Doc = `` /* 229-byte string literal not displayed */

Variables

View Source
var Analyzer = &analysis.Analyzer{
	Name: analyzerName,
	Doc:  Doc,
	Requires: []*analysis.Analyzer{
		commentignore.Analyzer,
		testfuncdecl.Analyzer,
	},
	Run: run,
}

Functions

This section is empty.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL