1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Goでのテストソースの書き方

Posted at

概要

Go言語で、JavaのJUnitなどのようにプログラムを書いてテストを行う方法

Goのテストソースのルール

①testingパッケージを利用する

package test

②テスト対象のファイルとテストファイルを同じディレクトリに配置する
③テストファイルのファイル名は
「テスト対象のファイル名_test.go」とする。

image.png

④テストの実行には「go test」コマンドやテストオプションを使う
以下の例ではテストの詳細を表示する-vオプションを使っている

image.png

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?