/*
- * $Header: /cvsroot/securityfilter/securityfilter/src/test/org/securityfilter/test/http/form/PostMethodTest.java,v 1.2 2003/07/07 04:18:49 maxcooper Exp $
- * $Revision: 1.2 $
- * $Date: 2003/07/07 04:18:49 $
+ * $Header: /cvsroot/securityfilter/securityfilter/src/test/org/securityfilter/test/http/form/PostMethodTest.java,v 1.3 2003/07/07 13:14:07 maxcooper Exp $
+ * $Revision: 1.3 $
+ * $Date: 2003/07/07 13:14:07 $
*
* ====================================================================
* The SecurityFilter Software License, Version 1.1
* LogoutTest - tests the logout functionality.
*
* @author Max Cooper (max@maxcooper.com)
- * @version $Revision: 1.2 $ $Date: 2003/07/07 04:18:49 $
+ * @version $Revision: 1.3 $ $Date: 2003/07/07 13:14:07 $
*/
public class PostMethodTest extends TestBase {
private static final String POST_VALUE = "it works!";
// make sure the item we submitted is present
TableCell postedValue = (TableCell) response.getElementWithID(Constants.SECURE_POSTED_VALUE_ID);
assertNotNull("POSTed parameter not found in reponse", postedValue);
- System.out.println("postedValue.asText() = \"" + postedValue.asText() + "\"");
assertEquals("POSTed parameter did not have the right value", postedValue.asText(), POST_VALUE);
}
}