コード例 #1
0
ファイル: test_node.php プロジェクト: rongzedong/kademlia.php
 public function testBinHexIdConversion()
 {
     $id = str_repeat('AA', N / 8);
     $this->assertEqual(strtolower($id), strtolower(Kademlia\Node::binId2hex(Kademlia\Node::hexId2bin($id))));
 }