errors.go
 1  package language
 2  
 3  import (
 4  	"errors"
 5  )
 6  
 7  // Common errors over all languages.
 8  var (
 9  	// ErrNoTestFound indicates that no tests could be found.
10  	ErrNoTestFound = errors.New("no tests could be found")
11  )