Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for test_fromValue_null (0.54 seconds)

  1. src/test/java/org/codelibs/fess/llm/ChatIntentTest.java

            assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue("UNCLEAR"));
            assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue("Unclear"));
        }
    
        @Test
        public void test_fromValue_null() {
            // Defaults to UNCLEAR when value is null
            assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue(null));
        }
    
        @Test
        public void test_fromValue_empty() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 01 08:11:18 GMT 2026
    - 3.8K bytes
    - Click Count (0)
Back to Top