Package com.wesabe.grendel.resources

Examples of com.wesabe.grendel.resources.LinksResource


      this.userDAO = mock(UserDAO.class);
     
      this.documentDAO = mock(DocumentDAO.class);
      when(documentDAO.findByOwnerAndName(user, "document1.txt")).thenReturn(document);
     
      this.resource = new LinksResource(userDAO, documentDAO);
     
      this.credentials = mock(Credentials.class);
      when(credentials.buildSession(userDAO, "bob")).thenReturn(session);
     
      this.uriInfo = mock(UriInfo.class);
View Full Code Here

TOP

Related Classes of com.wesabe.grendel.resources.LinksResource

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.