Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,084 for runners (0.12 sec)

  1. guava-tests/test/com/google/common/graph/GraphEquivalenceTest.java

    import com.google.common.graph.TestUtil.EdgeType;
    import java.util.Arrays;
    import java.util.Collection;
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.junit.runners.Parameterized;
    import org.junit.runners.Parameterized.Parameters;
    
    @AndroidIncompatible
    // TODO(cpovirk): Figure out Android JUnit 4 support. Does it work with Gingerbread? @RunWith?
    @RunWith(Parameterized.class)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 22 19:09:27 UTC 2017
    - 4.7K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/util/EmptyStatement.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.util
    
    import org.junit.runners.model.Statement
    
    class EmptyStatement extends Statement {
        public static final INSTANCE = new EmptyStatement()
    
        @Override
        void evaluate() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 820 bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/util/ports/ReleasingPortAllocator.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.util.ports
    
    import org.junit.rules.TestRule
    import org.junit.runner.Description
    import org.junit.runners.model.Statement
    
    /**
     * A TestRule that releases any assigned ports after the test executes.
     */
    class ReleasingPortAllocator implements PortAllocator, TestRule {
        final PortAllocator delegate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/PreconditionVerifier.groovy

     * limitations under the License.
     */
    
    package org.gradle.test.precondition
    
    import org.jetbrains.annotations.NotNull
    import org.junit.Assume
    import org.junit.rules.TestRule
    import org.junit.runner.Description
    import org.junit.runners.model.Statement
    
    class PreconditionVerifier implements TestRule {
        @Override
        Statement apply(@NotNull Statement base, @NotNull Description description) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/UnsupportedWithConfigurationCacheRule.groovy

     */
    
    package org.gradle.integtests.fixtures
    
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.junit.rules.TestRule
    import org.junit.runner.Description
    import org.junit.runners.model.Statement
    
    import static org.gradle.integtests.fixtures.ToBeFixedForConfigurationCacheExtension.isEnabledBottomSpec
    import static ToBeFixedSpecInterceptor.iterationMatches
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 08:57:52 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/TestLogHandler.kt

    import org.junit.jupiter.api.extension.BeforeEachCallback
    import org.junit.jupiter.api.extension.ExtensionContext
    import org.junit.rules.TestRule
    import org.junit.runner.Description
    import org.junit.runners.model.Statement
    
    /**
     * A log handler that records which log messages were published so that a calling test can make
     * assertions about them.
     */
    class TestLogHandler(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestDistributionDirectoryProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.file;
    
    import org.junit.runners.model.FrameworkMethod;
    
    import java.io.File;
    
    public class TestDistributionDirectoryProvider extends AbstractTestDirectoryProvider {
        public TestDistributionDirectoryProvider(Class<?> klass) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ExpectingFailureRuleStatement.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures
    
    import org.junit.runners.model.Statement
    
    class ExpectingFailureRuleStatement extends Statement {
    
        private final Statement next
    
        private final String feature
    
        ExpectingFailureRuleStatement(Statement next, String feature) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:04:13 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4SuitesIntegrationTest.groovy

        abstract String getTestFrameworkJUnit3Dependencies()
    
        @Override
        String getTestFrameworkSuiteImports() {
            return """
                import org.junit.runner.RunWith;
                import org.junit.runners.Suite;
            """.stripIndent()
        }
    
        @Override
        String getTestFrameworkSuiteAnnotations(String classes) {
            return """
                @RunWith(Suite.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/RunnerFactory.groovy

    /**
     * Implementing this trait means that a class knows how to create runners for testing Android and Kotlin plugins.
     */
    @SelfType(AbstractSmokeTest)
    trait RunnerFactory {
    
        SmokeTestGradleRunner mixedRunner(boolean parallel, String agpVersion, VersionNumber kgpVersion, String... tasks) {
            def runner = kgpRunner(parallel, kgpVersion, tasks)
            return newAgpRunner(agpVersion, runner)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top