今使っているRevel Frameworkのテストについてまとめてみた。 デモ サンプル https://github.com/oinume/revel-sample テストの実行(ブラウザー経由) revel run revel-sample http://localhost:9000/@tests にアクセス テストの実行(CUI) revel test revel-sample TestSuite type AppTest struct { revel.TestSuite } revel.TestSuiteを埋め込んで使うと、コイツが持っている各種関数が使えるようになる。 t.Get(PATH) t.AssertOk() t.AssertContentType etc... type AppTest struct { revel.TestSuite } func (t *AppTes