Package com.pugh.sockso.web

Examples of com.pugh.sockso.web.Submission


       
        final Userer u = new Userer();
        u.setRequest( req );
        u.setLocale( testLocale );
       
        final Submission s = u.getUpdateSubmission();
       
        verify( req );
       
    }
View Full Code Here


        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 );
    }
View Full Code Here

TOP

Related Classes of com.pugh.sockso.web.Submission

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.