- Sort Score
- Result 10 results
- Languages All
Results 41 - 47 of 47 for test_date (0.06 sec)
-
src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiFileTest.java
assertEquals("seg5", itemList3.get(4).getSegmentation()); assertEquals("reading5", itemList3.get(4).getReading()); assertEquals("pos5", itemList3.get(4).getPos()); } public void test_update() { final KuromojiFile kuromojiFile = new KuromojiFile(file1); final PagingList<KuromojiItem> itemList1 = kuromojiFile.selectList(0, 20); assertEquals(3, itemList1.size());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoResponseTypeTest.java
SsoResponseType.valueOf(null); fail("Expected NullPointerException"); } catch (NullPointerException e) { // Expected exception } } public void test_name() { // Test name() method returns correct string representation assertEquals("METADATA", SsoResponseType.METADATA.name()); assertEquals("LOGOUT", SsoResponseType.LOGOUT.name()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
} @Override public void tearDown() throws Exception { ComponentUtil.setFessConfig(null); super.tearDown(); } public void test_update() { // Test update method User user = createTestUser("testuser", "password123"); ldapChain.update(user); assertEquals(user, testLdapManager.insertedUser);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java
assertEquals("z2", itemList3.get(6).getInputs()[1]); assertEquals("z1", itemList3.get(6).getOutputs()[0]); assertEquals("z2", itemList3.get(6).getOutputs()[1]); } public void test_update() { final SynonymFile synonymFile = new SynonymFile(file1); final PagingList<SynonymItem> itemList1 = synonymFile.selectList(0, 20); assertEquals(5, itemList1.size());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
found = true; break; } } assertTrue(found); } // Test update method public void test_update() { loadTestData(); StopwordsItem item = stopwordsFile.get(1).get(); item.setNewInput("updated"); stopwordsFile.update(item); // Verify the item was updated
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java
if ("newWord".equals(item.getInput())) { found = true; break; } } assertTrue(found); } public void test_update() { // Load data first protwordsFile.reload(null); // Get an existing item ProtwordsItem item = protwordsFile.get(1).get(); item.setNewInput("updatedWord");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
found = true; } } assertTrue(found); } // Test update method public void test_update() throws Exception { writeTestFile("a,b => c\nd,e => f\n"); // Get existing item OptionalEntity<CharMappingItem> existing = charMappingFile.get(1L); assertTrue(existing.isPresent());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0)