Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for loadeduser (0.04 sec)

  1. src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java

            User inputUser = createTestUser("inputuser", "Input User");
            User loadedUser = createTestUser("loadeduser", "Loaded User");
            chain.loadResult = loadedUser;
    
            User result = chain.load(inputUser);
    
            assertNotNull(result);
            assertEquals(loadedUser, result);
            assertEquals(1, chain.loadCalls.size());
            assertEquals(inputUser, chain.loadCalls.get(0));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

            User user = createTestUser("testuser");
            User loadedUser = createTestUser("loadeduser");
            TestAuthenticationChain chain = new TestAuthenticationChain();
            chain.loadResult = loadedUser;
            authenticationManager.addChain(chain);
    
            User result = authenticationManager.load(user);
    
            assertEquals(loadedUser, result);
            assertEquals(1, chain.loadCallCount);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
Back to top