Go Fridayこぼれ話:非公開(unexported)な機能を使ったテスト ▪ https://engineering.mercari.com/blog/entry/2018-08-08-080000/ • go test ./… ◦ パッケージごとに別プロセスで動く(パッケージ間でメモリ空間が独立) ◦ 並行テストの動き方 ▪ Go言語でのテストの並列化 〜t.Parallel()メソッドを理解する〜 • https://engineering.mercari.com/blog/entry/how_to_use_t_parallel/ • testdataディレクトリ ◦ The go tool will ignore a directory named "testdata", making it available to hold ancillary data needed by the tests. Tips: