Package org.sonar.wsclient.services

Examples of org.sonar.wsclient.services.ResourceSearchResult$Resource


public class ResourceSearchUnmarshallerTest extends UnmarshallerTestCase {

  @Test
  public void testToModel() {
    ResourceSearchResult result = new ResourceSearchUnmarshaller().toModel(loadFile("/resources/search.json"));
    assertThat(result.getPage(), is(1));
    assertThat(result.getPageSize(), is(10));
    assertThat(result.getTotal(), is(4));
    assertThat(result.getResources().size(), is(4));

  }
View Full Code Here

TOP

Related Classes of org.sonar.wsclient.services.ResourceSearchResult$Resource

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.