mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 11:35:51 +00:00
13 lines
185 B
Go
13 lines
185 B
Go
package cwe_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestCwe(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Cwe Suite")
|
|
}
|