Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for IntegTest (0.04 seconds)

  1. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

            val projectFoldersWithFunctionalTests = subProjectFolderList().filter { File(it, "src/integTest").exists() }
            assertFalse(projectFoldersWithFunctionalTests.isEmpty())
            projectFoldersWithFunctionalTests.forEach {
                assertFalse(
                    containsSrcFileWithString(
                        File(it, "src/integTest"),
                        "CrossVersion",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Oct 16 01:27:05 GMT 2025
    - 14.6K bytes
    - Click Count (0)
  2. build-tools-internal/build.gradle

      integTestImplementation "org.xmlunit:xmlunit-core:2.8.2"
    }
    
    tasks.register("integTest", Test) {
      inputs.dir(file("src/testKit")).withPropertyName("testkit dir").withPathSensitivity(PathSensitivity.RELATIVE)
      systemProperty 'test.version_under_test', version
      testClassesDirs = sourceSets.integTest.output.classesDirs
      classpath = sourceSets.integTest.runtimeClasspath
      useJUnitPlatform()
    }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 18:10:22 GMT 2021
    - 11.3K bytes
    - Click Count (0)
  3. TESTING.asciidoc

    respective source directory. However, there are some more specialized REST tests
    that use custom task names. These are usually found in "qa" projects commonly
    use the "integTest" task.
    
    If in doubt about which command to use, simply run <gradle path>:check
    
    == Testing packaging
    
    The packaging tests use Vagrant virtual machines or cloud instances to verify
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K bytes
    - Click Count (0)
Back to Top