Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for test_multipleUpdates (0.06 sec)

  1. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            assertFalse(existingItem.isUpdated());
            assertNull(existingItem.getNewInput());
            assertEquals("existingword", existingItem.toLineString());
        }
    
        public void test_multipleUpdates() {
            // Test multiple updates to newInput
            StopwordsItem item = new StopwordsItem(1, "original");
    
            item.setNewInput("first");
            assertEquals("first", item.toLineString());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java

            assertEquals(999, item2.getId());
    
            ProtwordsItem item3 = new ProtwordsItem(-1, "word");
            assertEquals(-1, item3.getId());
        }
    
        public void test_multipleUpdates() {
            // Test multiple updates to newInput
            ProtwordsItem item = new ProtwordsItem(1, "original");
    
            assertFalse(item.isUpdated());
            assertFalse(item.isDeleted());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/hash/MacHashFunctionTest.java

        try {
          Hashing.hmacMd5(MD5_KEY);
          fail("expected ISE");
        } catch (IllegalStateException expected) {
        } finally {
          Providers.setProviderList(providers);
        }
      }
    
      public void testMultipleUpdates() throws Exception {
        Mac mac = Mac.getInstance("HmacSHA1");
        mac.init(SHA1_KEY);
        mac.update("hello".getBytes(UTF_8));
        mac.update("world".getBytes(UTF_8));
    
        assertEquals(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Dec 27 16:19:35 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top