Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testIncludes3 (0.05 sec)

  1. compat/maven-embedder/src/test/java/org/apache/maven/cli/props/MavenPropertiesLoaderTest.java

            MavenPropertiesLoader.loadProperties(p, mavenUserProps, null, false);
            assertEquals("chti11z", p.getProperty("fro"));
        }
    
        @Test
        void testIncludes3() throws Exception {
            FileSystem fs = Jimfs.newFileSystem(Configuration.unix());
    
            Path mavenHome = fs.getPath("/maven");
            Files.createDirectories(mavenHome);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Dec 01 19:41:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java

    import org.junit.Test;
    
    /**
     * @author higa
     */
    public class CopyOptionsTest {
    
        /**
         * @throws Exception
         */
        @Test
        public void testIncludes() throws Exception {
            final CopyOptions option = new CopyOptions();
            assertThat(option.include(BeanNames.hoge()), is(sameInstance(option)));
            assertThat(option.includePropertyNames.size(), is(1));
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 12K bytes
    - Viewed (0)
Back to top