Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for xmlunit (0.03 sec)

  1. compat/maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java

    import org.apache.maven.model.io.DefaultModelWriter;
    import org.apache.maven.model.io.ModelWriter;
    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.Test;
    import org.xmlunit.builder.DiffBuilder;
    import org.xmlunit.diff.Diff;
    
    import static org.junit.jupiter.api.Assertions.assertFalse;
    import static org.junit.jupiter.api.Assertions.assertThrows;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java

     * @see org.codelibs.fess.crawler.entity.AccessResultData
     * @see org.codelibs.core.lang.StringUtil
     */
    public final class XmlUtil {
    
        private static final Logger logger = LogManager.getLogger(XmlUtil.class);
    
        private XmlUtil() {
        }
    
        /**
         * Escapes special characters in the given XML string to their corresponding
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 22 13:28:22 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/XmlUtilTest.java

    /**
     * Test class for XmlUtil.
     *
     * @author shinsuke
     */
    public class XmlUtilTest extends PlainTestCase {
    
        public void test_escapeXml_null() {
            // Test null input
            assertEquals(StringUtil.EMPTY, XmlUtil.escapeXml(null));
        }
    
        public void test_escapeXml_empty() {
            // Test empty string
            assertEquals("", XmlUtil.escapeXml(""));
        }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top