mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-09-13 11:50:11 +00:00

* implemented SelectPopParticipants * added check if enough participants to initiate PoP * make use of lib for broadcasting tx Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>
20 lines
363 B
Go
20 lines
363 B
Go
package dao
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/planetmint/planetmint-go/testutil/network"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
func TestE2ETestSuite(t *testing.T) {
|
|
cfg := network.DefaultConfig()
|
|
suite.Run(t, NewE2ETestSuite(cfg))
|
|
}
|
|
|
|
func TestPopE2ETestSuite(t *testing.T) {
|
|
cfg := network.DefaultConfig()
|
|
suite.Run(t, NewPopSelectionE2ETestSuite(cfg))
|
|
}
|