Files
gosec/taint/taint_suite_test.go
T
Ravi Sastry Kadali 000384e510 fix: broken taint analysis causing false positives (#1506)
* fix: broken taint analysis causing false positives

* add tests and improve code coverage
2026-02-14 12:24:33 +01:00

14 lines
191 B
Go

package taint_test
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestTaint(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Taint Suite")
}