mirror of
https://github.com/mudler/LocalAI.git
synced 2024-12-18 20:27:57 +00:00
fc29c04f82
groundwork: add pkg/concurrency and the associated test case Signed-off-by: Dave Lee <dave@gray101.com>
14 lines
209 B
Go
14 lines
209 B
Go
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")
|
|
}
|