Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 226 for defaultValues (0.17 sec)

  1. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/dataFlowInfoProvider/FirIdeNormalAnalysisSourceModuleExitPointSnapshotTestGenerated.java

      @TestDataPath("$PROJECT_ROOT")
      public class DefaultValues {
        @Test
        public void testAllFilesPresentInDefaultValues() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues"), Pattern.compile("^(.+)\\.kt$"), null, true);
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/dataFlowInfoProvider/FirStandaloneNormalAnalysisSourceModuleExitPointSnapshotTestGenerated.java

      @TestDataPath("$PROJECT_ROOT")
      public class DefaultValues {
        @Test
        public void testAllFilesPresentInDefaultValues() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues"), Pattern.compile("^(.+)\\.kt$"), null, true);
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/dataFlowInfoProvider/FirIdeDependentAnalysisSourceModuleExitPointSnapshotTestGenerated.java

      @TestDataPath("$PROJECT_ROOT")
      public class DefaultValues {
        @Test
        public void testAllFilesPresentInDefaultValues() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues"), Pattern.compile("^(.+)\\.kt$"), null, true);
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/dataFlowInfoProvider/FirIdeDependentAnalysisScriptSourceModuleExitPointSnapshotTestGenerated.java

      @TestDataPath("$PROJECT_ROOT")
      public class DefaultValues {
        @Test
        public void testAllFilesPresentInDefaultValues() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues"), Pattern.compile("^(.+)\\.kts$"), null, true);
        }
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/dataFlowInfoProvider/FirIdeNormalAnalysisScriptSourceModuleExitPointSnapshotTestGenerated.java

      @TestDataPath("$PROJECT_ROOT")
      public class DefaultValues {
        @Test
        public void testAllFilesPresentInDefaultValues() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues"), Pattern.compile("^(.+)\\.kts$"), null, true);
        }
      }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:53:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/util/DefaultProcessForkOptionsTest.groovy

        def baseDir = new File("base-dir")
        def resolver = Mock(FileResolver.class) {
            resolve(".") >> baseDir
        }
        def options = new DefaultProcessForkOptions(resolver)
    
        def defaultValues() {
            expect:
            options.executable == null
            !options.environment.empty
        }
    
        def resolvesWorkingDirectoryOnGet() {
            when:
            options.workingDir = 12
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultFileCollectionDependencyTest.groovy

        private final ComponentIdentifier targetComponent = Mock()
        private final DefaultFileCollectionDependency dependency = new DefaultFileCollectionDependency(targetComponent, source)
    
        def defaultValues() {
            expect:
            dependency.group == null
            dependency.name == "unspecified"
            dependency.version == null
        }
    
        def resolvesToTheSourceFileCollection() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/internal/tasks/DefaultGroovySourceSetTest.groovy

        def sourceSet = TestUtil.newInstance(DefaultGroovySourceSet, "<name>", "<display-name>", TestUtil.objectFactory(tmpDir.testDirectory))
    
        void defaultValues() {
            expect:
            sourceSet.groovy instanceof GroovySourceDirectorySet
            sourceSet.groovy.isEmpty()
            sourceSet.groovy.name == '<name>'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/test/groovy/org/gradle/api/internal/tasks/DefaultScalaSourceSetTest.groovy

        private final DefaultScalaSourceSet sourceSet = TestUtil.newInstance(DefaultScalaSourceSet, "<set-display-name>", TestUtil.objectFactory(tmpDir.testDirectory))
    
        @Test
        void defaultValues() {
            expect:
            assertThat(sourceSet.scala, instanceOf(DefaultSourceDirectorySet))
            assertThat(sourceSet.scala, isEmpty())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/TaskStateInternalTest.groovy

    import static org.junit.Assert.assertTrue
    import static org.junit.Assert.fail
    
    class TaskStateInternalTest {
        private final TaskStateInternal state = new TaskStateInternal()
    
        @Test
        public void defaultValues() {
            assertFalse(state.getExecuted())
            assertFalse(state.getExecuting())
            assertTrue(state.configurable)
            assertThat(state.getFailure(), nullValue())
            assertFalse(state.getDidWork())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 30 07:54:03 UTC 2020
    - 3.7K bytes
    - Viewed (0)
Back to top