forked from ebhomengo/niki
1
0
Fork 0

Chore(e2e.benefactor-address-test): add base

Signed-off-by: Reza Mobaraki <rezam578@gmail.com>
This commit is contained in:
Reza Mobaraki 2024-08-26 00:43:45 +03:30
parent 013fd8cf5c
commit c58cc2789a
No known key found for this signature in database
GPG Key ID: 922CBCF25B541A6F
1 changed files with 27 additions and 0 deletions

View File

@ -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() {
}