forked from ebhomengo/niki
28 lines
549 B
Go
28 lines
549 B
Go
//go:build end2end
|
|
|
|
package end2end
|
|
|
|
import (
|
|
"git.gocasts.ir/ebhomengo/niki/delivery/http_server/end2end/setup"
|
|
"github.com/stretchr/testify/suite"
|
|
"testing"
|
|
)
|
|
|
|
type BenefactorAddressTestSuit struct {
|
|
suite.Suite
|
|
}
|
|
|
|
func TestBenefactorAddressTestSuit(t *testing.T) {
|
|
suite.Run(t, new(BenefactorAddressTestSuit))
|
|
}
|
|
|
|
func (suite *BenefactorAddressTestSuit) SetupSuite() {
|
|
teardown := setup.SeedMariaDB(testContainer.GetMariaDBConfig())
|
|
suite.T().Cleanup(teardown)
|
|
|
|
}
|
|
|
|
func (suite *BenefactorAddressTestSuit) TestBenefactorAddressCreate() {
|
|
|
|
}
|