Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_multipleAppends (0.54 sec)

  1. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

            monitorTarget.appendException(buf, exception);
            assertTrue(buf.toString().contains("Special test exception"));
        }
    
        // Test multiple appends to the same buffer
        public void test_multipleAppends() {
            StringBuilder buf = new StringBuilder();
    
            monitorTarget.append(buf, "key1", () -> "value1");
            buf.append(",");
            monitorTarget.append(buf, "key2", () -> 123);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
Back to top