Skip to content

Instantly share code, notes, and snippets.

@takuan-osho
Created October 27, 2013 11:33
Show Gist options
  • Save takuan-osho/7180711 to your computer and use it in GitHub Desktop.
Save takuan-osho/7180711 to your computer and use it in GitHub Desktop.
Go言語を書くときにテスト駆動開発でやりたいなと思ったので、適当にテスト用のパッケージを調べてみた ref: http://qiita.com/takuan_osho/items/51c8856a3d28145d87bc
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