- PR -

StrutsTest における ファイルアップロードの テスト方法

1
投稿者投稿内容
Sakae
会議室デビュー日: 2005/04/09
投稿数: 2
投稿日時: 2005-04-09 03:44
StrutsTest を用いてファイルアップロードのテストをしたいのですが、どなたかテスト方法をご存知なかた、アドバイス願います。


//ActionForm
.........
public class RegisterNewItemForm extends ActionForm{
private FormFile image = null;
public FormFile getImage() {return image; }
public void setImage(FormFile image) {this.image = image; }
}


//StrutsTest for UserInterestAction
.........
public void testSuccsessfulRegisterNewItemDo() {
FormFile image = ??????? ;
getRequest().setAttribute("image ",image);
 .........
}

というような感じで、テストではどのObjectを渡してあげればいいかで悩んでおります。
ちなみに、FormFileはインターフェースで、これを実装したクラスが org.apache.struts.upload.CommonsMultipartRequestHandler.CommonsFormFile
 とされております。

[ メッセージ編集済み 編集者: Sakae 編集日時 2005-04-09 03:44 ]

[ メッセージ編集済み 編集者: Sakae 編集日時 2005-04-09 03:48 ]
1

スキルアップ/キャリアアップ(JOB@IT)