github.com/wawandco/oxpecker@v1.5.7-0.20210910201653-5958d4afdd89/lifecycle/test/tester.go (about)

     1  package test
     2  
     3  import "context"
     4  
     5  // Tester runs a set of tests depending on the tools you
     6  // want to test, this could include
     7  // - Go test (go test ...)
     8  // - Linting (gofmt/metalinter/milo)
     9  // - Yarn/NPM tests
    10  type Tester interface {
    11  	Test(context.Context, string, []string) error
    12  }