mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-28 00:42:30 +00:00

* refactor: Split up machine e2e test suites * refactor: move CreateAccount and FundAccount to testutil/e2e * refactor: add AttestMachine to testutil/e2e * refactor: split up asset e2e test suites * refactor: make use of testutil in e2e dao suite Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>
22 lines
406 B
Go
22 lines
406 B
Go
package asset
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/planetmint/planetmint-go/testutil/network"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
func TestE2ETestSuite(t *testing.T) {
|
|
t.Parallel()
|
|
cfg := network.DefaultConfig()
|
|
cfg.NumValidators = 1
|
|
suite.Run(t, NewE2ETestSuite(cfg))
|
|
}
|
|
|
|
func TestRESTMachineAttestationSuite(t *testing.T) {
|
|
cfg := network.DefaultConfig()
|
|
suite.Run(t, NewRestE2ETestSuite(cfg))
|
|
}
|