groundwork: add pkg/concurrency and the associated test file (#2745)

groundwork: add pkg/concurrency and the associated test case

Signed-off-by: Dave Lee <dave@gray101.com>
This commit is contained in:
Dave 2024-07-18 19:29:21 -04:00 committed by GitHub
parent 63fc22baab
commit fc29c04f82
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 175 additions and 0 deletions

View file

@ -0,0 +1,13 @@
package concurrency
import (
"testing"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestConcurrency(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Concurrency test suite")
}