package binder import ( g "gobang" ) func test_parseArgs() { given := parseArgs([]string { "a", "b", "c" }) expected := _CLIArgs { fromAddr: "b", toAddr: "c", } g.TAssertEqual(given, expected) } func MainTest() { test_parseArgs() }