storj/private/testplanet/run_test.go

20 lines
436 B
Go
Raw Normal View History

2019-02-04 20:37:46 +00:00
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information
package testplanet_test
import (
"testing"
"storj.io/storj/private/testcontext"
"storj.io/storj/private/testplanet"
2019-02-04 20:37:46 +00:00
)
func TestRun(t *testing.T) {
testplanet.Run(t, testplanet.Config{
SatelliteCount: 1, StorageNodeCount: 1, UplinkCount: 1,
2019-02-04 20:37:46 +00:00
}, func(t *testing.T, ctx *testcontext.Context, planet *testplanet.Planet) {
t.Log("running test")
})
}