Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_executeTx (0.05 sec)

  1. fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

        public void tearDown() throws Exception {
            super.tearDown();
            // close runner
            runner.close();
            // delete all files
            runner.clean();
        }
    
        public void test_executeTx() throws Exception {
            final CrawlerWebServer server = new CrawlerWebServer(7070);
            server.start();
    
            final String url = "http://localhost:7070/";
            try {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/JobExecutorTest.java

        @Override
        public void setUp() throws Exception {
            super.setUp();
            // Create a concrete implementation for testing
            jobExecutor = new TestJobExecutor();
        }
    
        public void test_execute() {
            // Test execute method
            String scriptType = "test";
            String script = "test script";
            Object result = jobExecutor.execute(scriptType, script);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
Back to top