boosty / boosty_test.go
hocki1's picture
first_commit
2c8c8ba
raw
history blame contribute delete
249 Bytes
package boosty
import (
"testing"
"github.com/stretchr/testify/suite"
)
type BoostyTestSuite struct {
suite.Suite
}
func (s *BoostyTestSuite) SetupTest() {
//
}
func TestBoostyTestSuite(t *testing.T) {
suite.Run(t, new(BoostyTestSuite))
}