Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for integrationTests (0.18 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.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.ide/*
     * Copyright 2023 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.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/action/AnnotationGeneratorWorkAction.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.action
    
    import org.gradle.api.Project
    import org.gradle.api.file.DirectoryProperty
    import org.gradle.api.provider.Property
    import org.gradle.configuration.DefaultImportsReader
    import org.gradle.workers.WorkAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 22 10:58:31 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/build.gradle.kts

    import gradlebuild.integrationtests.tasks.GenerateLanguageAnnotations
    import java.util.Properties
    
    plugins {
        id("gradlebuild.internal.java")
    }
    
    description = "Collection of test fixtures for integration tests, internal use only"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.performance.tasks
    
    import com.google.common.collect.Sets
    import gradlebuild.integrationtests.tasks.DistributionTest
    import gradlebuild.performance.PerformanceTestService
    import gradlebuild.performance.ScenarioBuildResultData
    import gradlebuild.performance.reporter.PerformanceReporter
    import groovy.json.JsonOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/build.gradle

    import gradlebuild.integrationtests.model.GradleDistribution
    import org.asciidoctor.gradle.jvm.AsciidoctorTask
    import org.gradle.docs.internal.tasks.CheckLinks
    import org.gradle.docs.samples.internal.tasks.InstallSample
    import org.gradle.internal.os.OperatingSystem
    
    import javax.inject.Inject
    
    import static gradlebuild.basics.BuildEnvironmentKt.repoRoot
    import static gradlebuild.basics.BuildParamsKt.isConfigurationCacheEnabledForDocsTests
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  6. pom.xml

    			</activation>
    			<properties>
    				<test.include.path>**/*Test.java</test.include.path>
    				<test.command.args>--illegal-access=permit</test.command.args>
    			</properties>
    		</profile>
    		<profile>
    			<id>integrationTests</id>
    			<properties>
    				<test.include.path>**/*Tests.java</test.include.path>
    				<test.command.args />
    			</properties>
    		</profile>
    	</profiles>
    	<build>
    		<finalName>fess</finalName>
    		<resources>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (1)
  7. platforms/documentation/docs/src/snippets/testing/test-suite-plugin/groovy/src/integrationTest/java/it/IntegrationTest.java

     * limitations under the License.
     */
    
    package it;
    
    import org.junit.jupiter.api.Assertions;
    import org.junit.jupiter.api.Test;
    
    public class IntegrationTest {
        @Test
        public void integrationTest() {
            Assertions.assertTrue(true);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 829 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/testing/test-suite-plugin/kotlin/src/integrationTest/java/it/IntegrationTest.java

     * limitations under the License.
     */
    
    package it;
    
    import org.junit.jupiter.api.Assertions;
    import org.junit.jupiter.api.Test;
    
    public class IntegrationTest {
        @Test
        public void integrationTest() {
            Assertions.assertTrue(true);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 829 bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/IntegrationTest.groovy

     * sure spock engine tests are executed.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.TYPE, ElementType.METHOD])
    @Tag("org.gradle.test.fixtures.IntegrationTest")
    @interface IntegrationTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. test-site/test/IntegrationTest.java

    import play.test.*;
    import play.libs.F.*;
    
    import static play.test.Helpers.*;
    import static org.fest.assertions.Assertions.*;
    
    import static org.fluentlenium.core.filter.FilterConstructor.*;
    
    public class IntegrationTest {
    
        /**
         * add your integration test here
         * in this example we just check if the welcome page is being shown
         */
        @Test
        public void test() {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 773 bytes
    - Viewed (0)
Back to top