- - PR -
StrutsTest における ファイルアップロードの テスト方法
1
投稿者 | 投稿内容 |
---|---|
|
投稿日時: 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