Package org.jbehave.core.io.rest.redmine

Examples of org.jbehave.core.io.rest.redmine.LoadFromRedmine.text()


  @Test
  public void canReadFromRedmineAsJSON() {
    LoadFromRedmine loader = new LoadFromRedmine(Type.JSON);
    String entity = read("redmine.json");
    String text = loader.text(entity, Type.JSON);
    assertThat(text, startsWith("Narrative"));
  }

  @Test
  public void canFormatURIForXML() {
View Full Code Here


  @Test
  public void canReadFromRedmineAsXML() throws MalformedURLException {
    LoadFromRedmine loader = new LoadFromRedmine(Type.XML);
    String entity = read("redmine.xml");
    String text = loader.text(entity, Type.XML);
    assertThat(text, startsWith("Narrative"));
  }

  private String read(String path) {
    try {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.