Ejemplo n.º 1
0
  @Test
  public void findRealPath() {

    String path = ClassPathUtils.getLocalizedPath("/jgnash/resource/account");

    System.out.println(path);

    assertNotNull("failed test", path);
  }
Ejemplo n.º 2
0
  @Test
  public void findFakePath() {

    Locale defaultLocale = Locale.getDefault();

    Locale.setDefault(new Locale("ZZ"));

    String path = ClassPathUtils.getLocalizedPath("/jgnash/resource/account");

    System.out.println(path);

    Locale.setDefault(defaultLocale);

    assertNotNull("failed test", path);
  }