14 lines
197 B
Go
14 lines
197 B
Go
package mapper
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestMapper(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Adapter Mapper Suite")
|
|
}
|