Examples of EcMessages


Examples of com.fray.evo.util.EcMessages

  /**
   * Tests the EcMessages class.
   */
  @Test
  public void test() {
    EcMessages messages = new EcMessages("com/fray/evo/util/test-messages");
    Assert.assertEquals("My life for Aiur!", messages.getString("no.args"));
    Assert.assertEquals("The Zergling killed the SCV.", messages.getString("two.args", "Zergling", "SCV"));
  }
View Full Code Here

Examples of com.fray.evo.util.EcMessages

   * time match up to real properties in the properties file.
   */
  @Test
  public void testAllPropertiesInCode() {
    File dir = new File("src/java");
    EcMessages messages = new EcMessages("com/fray/evo/ui/swingx/messages");
    List<File> exclude = new ArrayList<File>();
    go(dir, messages, new JavaAndDirsFilter(exclude));
  }
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.