タグ

ブックマーク / budougumi0617.github.io (1)

  • Goのtestを理解する in 2018 #go - My External Storage

    2018年夏(Go1.10)時点でGoのテスト方法をまとめる。 この記事は以下のスライド資料の補足記事になる。 Tour of testing in 2018 https://speakerdeck.com/budougumi0617/tour-of-testing-in-2018 TL;DR Goでテストを行なうときの方法をまとめた。 原則標準パッケージ・標準コマンドの説明のみ サンプルリポジトリは以下 https://github.com/budougumi0617/go-testing testing パッケージ https://golang.org/pkg/testing/ まずは基としてtestingパッケージがある。Goのテストで使うメソッドは基的にこのpkg配下にある。(HTTP関連のテストで使うhttptestはnet/httppkg配下にある。) Goでテストを書くと

    Goのtestを理解する in 2018 #go - My External Storage
  • 1