oktopus/backend/services/stomp/stomp_test.go
2023-10-28 16:00:27 -03:00

19 lines
274 B
Go

package stomp
import (
"testing"
"gopkg.in/check.v1"
)
// Runs all gocheck tests in this package.
// See other *_test.go files for gocheck tests.
func TestStomp(t *testing.T) {
check.Suite(&StompSuite{t})
check.TestingT(t)
}
type StompSuite struct {
t *testing.T
}