Package org.infinitest

Examples of org.infinitest.InfinitestSettings.saveTo()


  @Test
  public void canSavePropertiesToAStream() throws IOException {
    InfinitestSettings settings = new InfinitestSettings();
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    settings.saveTo(outputStream);
    Properties properties = new Properties();
    properties.load(new ByteArrayInputStream(outputStream.toByteArray()));
    assertEquals("true", properties.getProperty(IS_ENABLED));
  }
}
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.