Created
October 27, 2013 11:33
-
-
Save takuan-osho/7180711 to your computer and use it in GitHub Desktop.
Go言語を書くときにテスト駆動開発でやりたいなと思ったので、適当にテスト用のパッケージを調べてみた ref: http://qiita.com/takuan_osho/items/51c8856a3d28145d87bc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package yours | |
import ( | |
"testing" | |
"github.com/stretchr/testify/assert" | |
) | |
func TestSomething(t *testing.T) { | |
assert.True(t, true, "True is true!") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment