package consistenthash_test

import (
	"testing"

	. "github.com/onsi/ginkgo"
	"github.com/onsi/ginkgo/reporters"
	. "github.com/onsi/gomega"

	"github.com/projectcalico/calico/libcalico-go/lib/testutils"
)

func TestConverter(t *testing.T) {
	testutils.HookLogrusForGinkgo()
	RegisterFailHandler(Fail)
	junitReporter := reporters.NewJUnitReporter("../../report/consistenthash_primes_suite.xml")
	RunSpecsWithDefaultAndCustomReporters(t, "ConsistentHash primes Suite", []Reporter{junitReporter})
}
