14 lines
194 B
Go
14 lines
194 B
Go
package memory_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestMemory(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Memory Suite")
|
|
}
|