- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 346 for consistently (0.06 sec)
-
src/test/java/jcifs/EmptyIteratorTest.java
@Test @DisplayName("EmptyIterator should behave consistently across multiple calls") void testConsistentBehavior() { // When & Then - test multiple sequential calls for (int i = 0; i < 10; i++) { assertFalse(emptyIterator.hasNext(), "hasNext should consistently return false"); assertNull(emptyIterator.next(), "next should consistently return null"); } } @RepeatedTest(5)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/feature/FeaturesTest.java
"false"); assertFalse(Features.deployBuildPom(properties)); } @Test void testConsistencyWithOtherFeatureMethodsFalse() { // Test that deployBuildPom behaves consistently with other feature methods when false Map<String, Object> properties = Map.of( Constants.MAVEN_DEPLOY_BUILD_POM, "false", Constants.MAVEN_CONSUMER_POM, "false");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jul 04 19:42:23 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/SmbNegotiationRequestTest.java
@DisplayName("Test implementation consistency") void testImplementationConsistency() { // Given SmbNegotiationRequest consistentRequest = new TestSmbNegotiationRequest(true); // When & Then - verify consistency across multiple calls for (int i = 0; i < 10; i++) { assertTrue(consistentRequest.isSigningEnforced(), "Implementation should consistently return the same value"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java
assertTrue(toStringResult.contains(message)); } public void test_getMessage_consistency() { // Test that getMessage returns the same value consistently String message = "Consistent message"; UnsupportedSearchException exception = new UnsupportedSearchException(message); String firstCall = exception.getMessage(); String secondCall = exception.getMessage();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/Helpers.java
* consistently between their order within {@code valuesInExpectedOrder} and the order implied by * the given {@code comparator}. * * <p>In detail, this method asserts * * <ul> * <li><i>reflexivity</i>: {@code comparator.compare(t, t) = 0} for all {@code t} in {@code * valuesInExpectedOrder}; and * <li><i>consistency</i>: {@code comparator.compare(ti, tj) < 0} and {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 17.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java
// This is expected behavior since they're created with the same configuration assertEquals(response1.toString(), response2.toString()); } @Test @DisplayName("All write methods should consistently return 0") void testAllWriteMethodsReturnZero() { // Arrange byte[] buffer = new byte[100]; // Act & Assert assertEquals(0, response.writeSetupWireFormat(buffer, 0));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/context/BaseContextTest.java
// Then - should be same instances assertSame(config1, config2, "Configuration should be consistent"); assertSame(dfs1, dfs2, "DFS resolver should be consistent"); assertSame(cache1, cache2, "Buffer cache should be consistent"); } @Test @DisplayName("Context should provide working resource creation")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.1K bytes - Viewed (0) -
SECURITY.md
Every effort will be made to handle the bug in as timely a manner as possible, however it's important that we
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Feb 12 00:51:25 UTC 2022 - 2.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java
} } public void test_findOnMainSchema_alwaysReturnsNull() { // Since the implementation always returns null (no DBFlute classification used), // test that it consistently returns null for any input assertNull(invokeMethod(provider, "findOnMainSchema", "TestClassification")); assertNull(invokeMethod(provider, "findOnMainSchema", ""));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } public void test_getType_immutability() { // Test that getType returns the same value consistently String type = "ApiKey"; String message = "API key expired"; InvalidAccessTokenException exception = new InvalidAccessTokenException(type, message);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0)