Package br.com.caelum.restfulie.http

Examples of br.com.caelum.restfulie.http.Header


      System.out.println(h.getValue());
    }
   
    Iterator<Header> iterator = headers.iterator();
   
    Header header = iterator.next();
   
    assertThat("Accept", is(equalTo(header.getName())));
    assertThat("application/xml", is(equalTo(header.getValue())));
   
    Header header2 = iterator.next();
   
    assertThat("Content-type", is(equalTo(header2.getName())));
    assertThat("application/xml", is(equalTo(header2.getValue())));

  }
View Full Code Here

TOP

Related Classes of br.com.caelum.restfulie.http.Header

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.