Files
hakorune/local_tests/test_http_server_working.hako

25 lines
714 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.

// HTTPServerBoxの動作テスト
static box Main {
init {
ConsoleBox console,
HTTPServerBox server
}
main() {
me.console = new ConsoleBox()
me.console.log("🌐 HTTPServerBoxテスト開始...")
// HTTPServerBoxを作成
me.server = new HTTPServerBox()
me.console.log("✅ HTTPServerBox作成成功")
// 基本情報を表示
me.console.log("HTTPServerBox: " + me.server.toString())
// bind設定実際のサーバー起動はしない
me.server.bind("127.0.0.1", 8080)
me.console.log("✅ Bind設定完了: 127.0.0.1:8080")
return "完了"
}
}