Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for certify (0.05 sec)

  1. guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

        ExecutorService service = mock(ExecutorService.class);
        application.addDelayedShutdownHook(service, 2, SECONDS);
        verify(service, Mockito.never()).shutdown();
        application.shutdown();
        InOrder shutdownFirst = Mockito.inOrder(service);
        shutdownFirst.verify(service).shutdown();
        shutdownFirst.verify(service).awaitTermination(2, SECONDS);
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Dec 12 00:25:21 UTC 2025
    - 26.5K bytes
    - Viewed (0)
  2. impl/maven-core/src/test/java/org/apache/maven/project/ResourceIncludeTest.java

            // Add an include - this should work now
            resource.addInclude("test");
    
            // Verify the include was added
            assertEquals(1, resource.getIncludes().size(), "Should have one include");
            assertEquals("test", resource.getIncludes().get(0), "Include should be 'test'");
    
            // Verify that getting resources again still shows the include
            List<Resource> resourcesAfter = project.getResources();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 07 13:11:07 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/StrategyOrchestratorTest.java

                assertTrue(result.success(), "Orchestrator should succeed");
    
                // Verify only applicable strategy was executed
                verify(mockStrategies.get(0)).apply(Mockito.eq(context), Mockito.any());
                verify(mockStrategies.get(1), Mockito.never()).apply(Mockito.any(), Mockito.any());
                verify(mockStrategies.get(2), Mockito.never()).apply(Mockito.any(), Mockito.any());
            }
    
            @Test
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/NullResponseProcessorTest.java

            // Execute - should not throw any exception
            processor.process(responseData);
    
            // Verify child URLs are unchanged
            assertEquals(2, responseData.getChildUrlSet().size());
        }
    
        public void test_noOpBehavior() {
            // Verify that NullResponseProcessor truly does nothing
            NullResponseProcessor processor = new NullResponseProcessor();
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  5. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategyTest.java

                strategy.apply(context, pomMap);
    
                // Verify child groupId was removed (matches parent, can be inferred)
                assertNull(childRoot.child("groupId").orElse(null));
                // Verify child version was kept (differs from parent, cannot be inferred)
                assertNotNull(childRoot.child("version").orElse(null));
                // Verify child artifactId was kept (always required)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 35.2K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/SitemapsResponseProcessorTest.java

            }
    
            // Execute and verify
            try {
                processor.process(responseData);
                fail("Should throw ChildUrlsException");
            } catch (ChildUrlsException e) {
                Set<RequestData> childUrls = e.getChildUrlList();
                assertNotNull(childUrls);
                assertEquals(3, childUrls.size());
    
                // Verify all URLs are present
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 12K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/service/impl/UrlFilterServiceImplTest.java

            // Verify
            assertEquals(3, includePatterns.size());
            assertEquals(3, excludePatterns.size());
    
            // Verify all calls were made
            verify(dataHelper).addIncludeUrlPattern(sessionId, "https://example.com/.*");
            verify(dataHelper).addIncludeUrlPattern(sessionId, "https://test.com/.*");
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerThreadTest.java

            crawlerThread.run();
    
            verify(urlQueueService, times(1)).poll(anyString());
        }
    
        /**
         * Test run method with crawler status DONE.
         */
        public void test_run_statusDone() throws Exception {
            crawlerContext.setStatus(CrawlerStatus.DONE);
    
            crawlerThread.run();
    
            verify(urlQueueService, times(0)).poll(anyString());
        }
    
        /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  9. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategyTest.java

                // Convert to string to check formatting
                String result = DomUtils.toXml(document);
    
                // If pluginManagement was added, verify proper formatting
                if (result.contains("<pluginManagement>")) {
                    // Verify that the XML formatting is correct - no malformed closing tags
                    assertFalse(result.contains("</plugin></plugins>"), "Should not have malformed closing tags");
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/service/impl/UrlQueueServiceImplTest.java

            // Execute
            service.updateSessionId(oldSessionId, newSessionId);
    
            // Verify
            verify(dataHelper).getUrlQueueList(oldSessionId);
            verify(dataHelper).addUrlQueueList(newSessionId, mockQueue);
            verify(dataHelper).removeUrlQueueList(oldSessionId);
        }
    
        public void test_poll() {
            // Setup
            String sessionId = "session123";
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 14.1K bytes
    - Viewed (0)
Back to top