mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-22 19:07:26 +08:00
14 lines
201 B
Go
14 lines
201 B
Go
package testing
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestGenSwarm(t *testing.T) {
|
|
swarm := GenSwarm(t)
|
|
require.NoError(t, swarm.Close())
|
|
GenUpgrader(t, swarm, nil)
|
|
}
|