- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for testGetMessage (0.05 sec)
-
src/test/java/org/codelibs/core/message/MessageFormatterTest.java
} @After public void tearDown() throws Exception { LocaleUtil.setDefault(null); } /** * @throws Exception */ @Test public void testGetMessage() throws Exception { final String s = MessageFormatter.getMessage("EMSG0000"); System.out.println(s); assertThat(s, is("[EMSG0000]test")); } /** * @throws Exception
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.6K bytes - Viewed (0) -
compat/maven-builder-support/src/test/java/org/apache/maven/building/DefaultProblemTest.java
problem = new DefaultProblem(null, null, "SOURCE", 42, 127, null); assertEquals("SOURCE, line 42, column 127", problem.getLocation()); } @Test void testGetMessage() { DefaultProblem problem = new DefaultProblem("MESSAGE", null, null, -1, -1, null); assertEquals("MESSAGE", problem.getMessage());
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.9K bytes - Viewed (0)