expect( req.getArgument("pass1") ).andReturn( "one" );
expect( req.getArgument("pass2") ).andReturn( "" );
replay( req );
u.setRequest( req );
u.setLocale( testLocale );
final Submission s = u.getUpdateSubmission();
boolean gotException = false;
try { s.validate(); }
catch ( Exception e ) { gotException = true; }
assertTrue( gotException );
}