mirror of
https://github.com/mudler/LocalAI
synced 2026-04-21 21:37:21 +00:00
groundwork: add pkg/concurrency and the associated test case Signed-off-by: Dave Lee <dave@gray101.com>
13 lines
209 B
Go
13 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")
|
|
}
|