Files
hakorune/tests/development/test_p2p_phase1_methods.hako

12 lines
338 B
Plaintext
Raw Permalink Normal View History

// Phase 1: IntentBox基本テストメソッド形式
local intent
intent = new IntentBox("test", "Hello")
local console
console = new ConsoleBox()
console.log("Intent created: " + intent.toString())
// P2PBox作成テスト
local node
node = new P2PBox("test_node", "inprocess")
console.log("P2PBox created: " + node.toString())