forked from ebhomengo/niki
Chore(e2e.benefactor-address-test): add base
Signed-off-by: Reza Mobaraki <rezam578@gmail.com>
This commit is contained in:
parent
013fd8cf5c
commit
c58cc2789a
|
@ -0,0 +1,27 @@
|
||||||
|
//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() {
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue