- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for test_multipleUpdates (0.34 seconds)
-
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
assertFalse(existingItem.isUpdated()); assertNull(existingItem.getNewInput()); assertEquals("existingword", existingItem.toLineString()); } @Test public void test_multipleUpdates() { // Test multiple updates to newInput StopwordsItem item = new StopwordsItem(1, "original"); item.setNewInput("first"); assertEquals("first", item.toLineString());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
assertEquals(999, item2.getId()); ProtwordsItem item3 = new ProtwordsItem(-1, "word"); assertEquals(-1, item3.getId()); } @Test public void test_multipleUpdates() { // Test multiple updates to newInput ProtwordsItem item = new ProtwordsItem(1, "original"); assertFalse(item.isUpdated()); assertFalse(item.isDeleted());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/hash/MacHashFunctionTest.java
try { 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(Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 14.2K bytes - Click Count (0)