Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
14 lines
202 B
Go
14 lines
202 B
Go
package internal
|
|||
|
|||
import (
|
|||
"testing"
|
|||
|
|||
. "github.com/onsi/ginkgo/v2"
|
|||
. "github.com/onsi/gomega"
|
|||
)
|
|||
|
|||
func TestInternal(t *testing.T) {
|
|||
RegisterFailHandler(Fail)
|
|||
RunSpecs(t, "NDPGen Internal Suite")
|
|||
}
|