Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,087 for JUnit (0.04 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterSuitesIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testing.junit.jupiter
    
    import org.gradle.integtests.fixtures.TargetCoverage
    import org.gradle.testing.fixture.JUnitCoverage
    import org.gradle.testing.junit.AbstractJUnitSuitesIntegrationTest
    
    import static org.gradle.testing.fixture.JUnitCoverage.JUNIT_JUPITER
    
    @TargetCoverage({ JUNIT_JUPITER })
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-09-18 20:52
    - 1.8K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4TestListenerBuildOperationAdapterIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.testing.junit.junit4
    
    import org.gradle.testing.AbstractTestListenerBuildOperationAdapterIntegrationTest
    
    /**
     * Base class for JUnit 4 build operation adapter integration tests.  Provides JUnit4-specific tests and test sources for both JUnit4 and JUnit Vintage.
     */
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-09-18 20:52
    - 2.4K bytes
    - Viewed (0)
  3. .teamcity/pom.xml

            </dependency>
            <dependency>
                <groupId>org.junit.jupiter</groupId>
                <artifactId>junit-jupiter-params</artifactId>
                <version>${junit.version}</version>
            </dependency>
            <dependency>
                <groupId>org.junit.jupiter</groupId>
                <artifactId>junit-jupiter-api</artifactId>
                <version>${junit.version}</version>
            </dependency>
            <dependency>
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-05-14 10:44
    - 8.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/IgnoredTestDescriptorProviderTest.groovy

     */
    
    package org.gradle.api.internal.tasks.testing.junit
    
    import junit.framework.TestCase
    import junit.framework.TestSuite
    import org.junit.Ignore
    import org.junit.Test
    import org.junit.internal.runners.InitializationError
    import org.junit.internal.runners.JUnit38ClassRunner
    import org.junit.internal.runners.JUnit4ClassRunner
    import org.junit.internal.runners.SuiteMethod
    import org.junit.runner.Description
    import org.junit.runner.RunWith
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-09-18 20:52
    - 4.7K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformIntegrationTest.groovy

                package org.gradle;
    
                import java.util.concurrent.*;
                import org.junit.jupiter.api.*;
                import org.junit.jupiter.api.parallel.*;
                import static org.junit.jupiter.api.Assertions.*;
                import static org.junit.jupiter.api.parallel.ExecutionMode.CONCURRENT;
    
                @Execution(CONCURRENT)
                class Sync {
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-09-18 20:52
    - 17.2K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformEnvironmentIntegrationTest.groovy

                    "test",
                    "junit-jupiter-params-${JUNIT_JUPITER_VERSION}.jar",
                    "junit-jupiter-engine-${JUNIT_JUPITER_VERSION}.jar",
                    "junit-jupiter-api-${JUNIT_JUPITER_VERSION}.jar",
                    "junit-platform-engine-${JUNIT_PLATFORM_VERSION}.jar",
                    "junit-platform-commons-${JUNIT_PLATFORM_VERSION}.jar",
                    "junit-jupiter-${JUNIT_JUPITER_VERSION}.jar",
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-09-18 20:52
    - 11.5K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassExecutor.java

    import org.junit.runner.Request;
    import org.junit.runner.RunWith;
    import org.junit.runner.Runner;
    import org.junit.runner.manipulation.Filter;
    import org.junit.runner.manipulation.Filterable;
    import org.junit.runner.manipulation.NoTestsRemainException;
    import org.junit.runner.notification.RunListener;
    import org.junit.runner.notification.RunNotifier;
    
    import java.util.ArrayList;
    import java.util.LinkedList;
    import java.util.List;
    
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-09-18 20:52
    - 7.4K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/overwritesExistingDependencies/expectedFiles/root.iml.xml

        <orderEntry type="module-library" scope="RUNTIME">
          <library>
            <CLASSES>
              <root url="jar://@CACHE_DIR@/junit/junit/4.7/@SHA1@/junit-4.7.jar!/"/>
            </CLASSES>
            <JAVADOC/>
            <SOURCES>
              <root url="jar://@CACHE_DIR@/junit/junit/4.7/@SHA1@/junit-4.7-sources.jar!/"/>
            </SOURCES>
          </library>
        </orderEntry>
        <orderEntry type="module-library" scope="TEST">
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-08-01 11:07
    - 2.1K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/IgnoredTestDescriptorProvider.java

     */
    
    package org.gradle.api.internal.tasks.testing.junit;
    
    import org.gradle.api.internal.tasks.testing.TestSuiteExecutionException;
    import org.junit.internal.runners.JUnit38ClassRunner;
    import org.junit.runner.Description;
    import org.junit.runner.Request;
    import org.junit.runner.RunWith;
    import org.junit.runner.Runner;
    import org.junit.runners.AllTests;
    
    import java.util.List;
    
    Registered: 2024-06-12 18:38
    - Last Modified: 2023-09-18 20:52
    - 3.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    *Dependencies* - Dependencies declared via configuration types -> https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api[`libs.junit.jupiter`] and https://mvnrepository.com/artifact/com.google.guava/guava[`libs.guava`] +
    
    Gradle needs specific information to find a dependency.
    Let's look at `libs.guava` -> `com.google.guava:guava:32.1.2-jre` and `libs.junit.jupiter` -> `org.junit.jupiter:junit-jupiter-api:5.9.1`; they are broken down as follows:
    
    Registered: 2024-06-12 18:38
    - Last Modified: 2024-03-28 22:40
    - 9.9K bytes
    - Viewed (0)
Back to top