Files
hakorune/tests/development/test_p2p_phase1_methods.hako

12 lines
338 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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())