Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testInclude (0.19 sec)

  1. subprojects/core-api/src/testFixtures/groovy/org/gradle/api/tasks/util/AbstractTestForPatternSet.groovy

        def testDefaultValues() {
            expect:
            patternSet.includes.empty
            patternSet.excludes.empty
        }
    
        def testInclude() {
            expect:
            checkIncludesExcludes(patternSet, 'include', 'includes')
        }
    
        def testExclude() {
            expect:
            checkIncludesExcludes(patternSet, 'exclude', 'excludes')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:53:27 UTC 2019
    - 2.4K 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: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top