[Go] go test で特定の関数だけ実行する

作成日: 2021年02月01日

go test-run オプションを使用すると、特定の関数だけを実行することができます。

go test -run SomeTestFunctionName
Go