Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test_run_largeInput (0.1 sec)

  1. src/test/java/org/codelibs/fess/util/InputStreamThreadTest.java

            thread.start();
            thread.join(1000);
    
            String output = thread.getOutput();
            assertTrue(output.contains("test line"));
        }
    
        public void test_run_largeInput() throws InterruptedException {
            StringBuilder largeInput = new StringBuilder();
            for (int i = 0; i < 5000; i++) {
                largeInput.append("Line number ").append(i).append("\n");
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.7K bytes
    - Viewed (0)
Back to top