- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for testErrorMessage_en (0.06 seconds)
-
src/test/java/org/codelibs/core/exception/NullArgumentExceptionTest.java
assertThat(nullArgumentException.getMessage(), is("[ECL0008]argument[hoge] is null.")); } /** * @throws Exception */ @Test public void testErrorMessage_en() throws Exception { // ## Arrange ## Locale.setDefault(Locale.ENGLISH); final NullArgumentException nullArgumentException = new NullArgumentException("hoge");
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 2K bytes - Click Count (0) -
src/test/java/org/codelibs/core/exception/SQLRuntimeExceptionTest.java
assertContains(message, "SQLState=bazState"); assertContains(message, "fuga reason"); } /** * @throws Exception */ @Test public void testErrorMessage_en() throws Exception { // ## Arrange ## Locale.setDefault(Locale.ENGLISH); final SQLException sqlException = new SQLException("manyReason", "barState", 1234);
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 3.2K bytes - Click Count (0)