mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 19:45:51 +00:00
14 lines
203 B
Go
14 lines
203 B
Go
|
package analyzers_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
. "github.com/onsi/ginkgo/v2"
|
||
|
. "github.com/onsi/gomega"
|
||
|
)
|
||
|
|
||
|
func TestAnalyzers(t *testing.T) {
|
||
|
RegisterFailHandler(Fail)
|
||
|
RunSpecs(t, "Analyzers Suite")
|
||
|
}
|