mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-10 18:25:17 +00:00
15 lines
266 B
Go
15 lines
266 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/libp2p/go-libp2p/examples/testutils"
|
|
)
|
|
|
|
func TestMain(t *testing.T) {
|
|
var h testutils.LogHarness
|
|
h.ExpectPrefix("Hello World, my hosts ID is ")
|
|
h.ExpectPrefix("Hello World, my second hosts ID is ")
|
|
h.Run(t, run)
|
|
}
|