use of org.aion.p2p.impl1.P2pMgr in project aion by aionnetwork.
the class P2pMgrTest method testIgnoreSameIpAndPortAsSelf.
@Test
public void testIgnoreSameIpAndPortAsSelf() {
String[] nodes = new String[] { "p2p://" + nodeId2 + "@" + ip1 + ":" + port1 };
P2pMgr p2p = new P2pMgr(p2pLOG, surveyLog, 0, "", nodeId1, ip1, port1, nodes, false, 128, 128, false, 50);
assertEquals(0, p2p.getTempNodesCount());
}
Aggregations