daybreaksnow's diary

私を私と呼びたい

JUnit

[GWT]RPCの自動テスト

公式:http://www.gwtproject.org/doc/latest/tutorial/JUnit.html 日本語訳を行っているブログ:http://mole-kingdom.com/wpbl/category/%E7%BF%BB%E8%A8%B3/page/15 シンプルなテスト testパッケージにクラスを作って、GWTTestCaseを継承してgetModuleName…

[JUnit4]Ruleアノテーションを使って共通する処理をまとめる

複数のテストケースで共通の初期化処理があるとき、以下のようにリソースクラスを作って、各テストクラスでセットアップメソッドを呼んでいた・共通するリソースクラス public class DatabaseConnectionResource{ private SessionFactory sessionFactory; pu…