tendermint/peer/connection_test.go

17 lines
222 B
Go
Raw Normal View History

2014-06-18 20:48:32 -07:00
package peer
import (
"testing"
)
func TestLocalConnection(t *testing.T) {
c1 := NewClient("tcp", ":8080")
c2 := NewClient("tcp", ":8081")
c1.ConnectTo(c2.LocalAddress())
c1.Stop()
c2.Stop()
}