Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for integrationTests (0.35 sec)

  1. build-logic/integration-testing/build.gradle.kts

    gradlePlugin {
        plugins {
            register("androidStudioProvisioning") {
                id = "gradlebuild.android-studio-provisioning"
                implementationClass = "gradlebuild.integrationtests.ide.AndroidStudioProvisioningPlugin"
            }
        }
    }
    
    dependencies {
        implementation("gradlebuild:basics")
        implementation("gradlebuild:module-identity")
    
        implementation(project(":cleanup"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 06 17:21:17 UTC 2024
    - 675 bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

    }
    
    
    internal
    fun Project.createTestTask(name: String, executer: String, sourceSet: SourceSet, testType: TestType, extraConfig: Action<IntegrationTest>): TaskProvider<IntegrationTest> =
        tasks.register<IntegrationTest>(name) {
            val integTest = project.the<IntegrationTestExtension>()
            project.getBucketProvider().get().bucketProvider.configureTest(this, sourceSet.name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. src/test/resources/run.sh

    #!/bin/bash
    
    touch $(ls -d ./fess-*/logs)/fess-crawler.log
    tail -f ./fess-*/logs/*.log &
    
    mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    ret=$?
    
    if [ $ret != 0 ] ; then
      for f in `find ./target -type f | grep surefire-reports | grep -v /TEST-` ; do
        cat $f
      done
    fi
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 353 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/testng-groups/groovy/src/test/java/org/gradle/testng/SimpleIntegrationTest.java

    import org.testng.annotations.BeforeMethod;
    import org.testng.annotations.Test;
    import org.testng.annotations.AfterMethod;
    import static org.testng.Assert.*;
    
    public class SimpleIntegrationTest{
        @Test(groups = { "integrationTests" })
        public void simpleIntegrationTest(){
            assertEquals(true, true);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 349 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/testng-groups/kotlin/build.gradle.kts

    dependencies {
        testImplementation("org.testng:testng:6.3.1")
    }
    
    // tag::test-config[]
    tasks.named<Test>("test") {
        useTestNG {
            val options = this as TestNGOptions
            options.excludeGroups("integrationTests")
            options.includeGroups("unitTests")
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 360 bytes
    - Viewed (0)
  6. testing/public-api-tests/build.gradle.kts

    import gradlebuild.integrationtests.tasks.IntegrationTest
    
    /*
     * Copyright 2024 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. testing/smoke-test/build.gradle.kts

    import gradlebuild.basics.BuildEnvironment
    import gradlebuild.basics.buildCommitId
    import gradlebuild.integrationtests.addDependenciesAndConfigurations
    import gradlebuild.integrationtests.tasks.SmokeTest
    import gradlebuild.performance.generator.tasks.RemoteProject
    
    plugins {
        id("gradlebuild.internal.java")
    }
    
    val smokeTestSourceSet = sourceSets.create("smokeTest") {
        compileClasspath += sourceSets.main.get().output
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. build-logic/integration-testing/src/main/kotlin/gradlebuild.split-docs.gradle.kts

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import gradlebuild.integrationtests.getBucketProvider
    import org.gradle.api.tasks.testing.Test
    
    tasks.named<Test>("docsTest") {
        getBucketProvider().get().bucketProvider.configureTest(this, "docsTest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 09 06:52:03 UTC 2021
    - 824 bytes
    - Viewed (0)
  9. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/SmokeTest.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.integrationtests.tasks
    
    import org.gradle.api.tasks.CacheableTask
    
    
    /**
     * A test that verifies Gradle can be used with popular third party plugins.
     */
    @CacheableTask
    abstract class SmokeTest : DistributionTest() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 889 bytes
    - Viewed (0)
  10. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/SmokeIdeTest.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.integrationtests.tasks
    
    import org.gradle.api.tasks.CacheableTask
    
    
    /**
     * A test that provides an IDE as environment for checking IDE and Gradle behavior during synchronization process.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 10:30:14 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top