Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java

            assertSame(testUser, fessUserBean.getFessUser());
    
            // Test with different user
            TestFessUser anotherUser = new TestFessUser();
            anotherUser.setName("another");
            FessUserBean anotherBean = new FessUserBean(anotherUser);
            assertSame(anotherUser, anotherBean.getFessUser());
        }
    
        public void test_empty() {
            // Test empty user bean creation
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/ldap/LdapUserTest.java

            // Test getName returns the correct name
            assertEquals("testuser", ldapUser.getName());
    
            // Test with different names
            LdapUser user2 = new LdapUser(testEnv, "anotheruser");
            assertEquals("anotheruser", user2.getName());
    
            // Test with empty name
            LdapUser user3 = new LdapUser(testEnv, "");
            assertEquals("", user3.getName());
    
            // Test with null name
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.6K bytes
    - Viewed (0)
Back to top