Package org.springframework.extensions.surf.util

Examples of org.springframework.extensions.surf.util.Content


    verify(handler).handleMap(anyMap());
  }

  @Test
  public void testHandleContent() {
    final Content content = mock(Content.class);
    handleGet("/handleContent", new MockWebScriptRequest().content(content));
    verify(handler).handleContent(eq(content));
  }
View Full Code Here

TOP

Related Classes of org.springframework.extensions.surf.util.Content

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.