Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 117 for Funnels (1.04 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/AllExceptIgnoredTestRunnerBuilder.java

    import org.junit.internal.builders.IgnoredBuilder;
    import org.junit.internal.builders.JUnit4Builder;
    import org.junit.runner.Runner;
    import org.junit.runners.BlockJUnit4ClassRunner;
    import org.junit.runners.model.RunnerBuilder;
    import org.slf4j.LoggerFactory;
    
    import java.lang.reflect.Constructor;
    
    public class AllExceptIgnoredTestRunnerBuilder extends AllDefaultPossibilitiesBuilder {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/IgnoredTestDescriptorProvider.java

    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;
    
    public class IgnoredTestDescriptorProvider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4JUnitIntegrationTest.groovy

                import java.lang.reflect.Method;
                import org.junit.runner.notification.RunNotifier;
                import org.junit.runners.BlockJUnit4ClassRunner;
                import org.junit.runners.model.FrameworkMethod;
                import org.junit.runners.model.InitializationError;
                import org.junit.runners.model.Statement;
    
                public class CustomRunner extends BlockJUnit4ClassRunner {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/IgnoredTestDescriptorProviderTest.groovy

    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
    import org.junit.runner.Runner
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4FilteringIntegrationTest.groovy

        void theParameterizedFiles() {
            file("src/test/java/ParameterizedFoo.java") << """
                ${testFrameworkImports}
                import org.junit.runners.Parameterized;
                import org.junit.runners.Parameterized.Parameters;
                import org.junit.runner.RunWith;
                import java.util.Arrays;
                import java.util.Collection;
    
                @RunWith(Parameterized.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/tunneling/destination-rule.tmpl.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: tunnel-outbound-traffic-to-external-svc-via-external-forward-proxy
    spec:
      host: external-forward-proxy.{{ .externalNamespace }}.svc.cluster.local
      subsets:
      - name: external-svc-tcp
        trafficPolicy:
          tunnel:
            targetHost: external.{{ .externalNamespace }}
            targetPort: {{ .externalSvcTcpPort }}
      - name: external-svc-tls
        trafficPolicy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 20 19:37:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitEnclosedRunnerIntegrationTest.groovy

        def 'can run tests in Enclosed runner'() {
            given:
            file('src/test/java/EnclosedTest.java') << """
                ${testFrameworkImports}
                import org.junit.experimental.runners.Enclosed;
    
                @RunWith( Enclosed.class )
                public class EnclosedTest {
                    public static class InnerClass {
                       @Test
                        public void aTest() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/UserInitScriptExecuterFixture.groovy

     */
    
    package org.gradle.integtests.fixtures.executer
    
    import org.gradle.test.fixtures.file.TestDirectoryProvider
    import org.junit.rules.MethodRule
    import org.junit.runners.model.FrameworkMethod
    import org.junit.runners.model.Statement
    
    abstract class UserInitScriptExecuterFixture implements MethodRule {
    
        GradleExecuter executer
        TestDirectoryProvider testDir
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. testing/internal-testing/src/test/groovy/org/gradle/testing/internal/util/ExpectedFailureRule.java

     * limitations under the License.
     */
    
    package org.gradle.testing.internal.util;
    
    import org.junit.rules.MethodRule;
    import org.junit.runners.model.FrameworkMethod;
    import org.junit.runners.model.Statement;
    
    public class ExpectedFailureRule implements MethodRule {
    
        @Override
        public Statement apply(final Statement base, final FrameworkMethod method, Object target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InitScriptExecuterFixture.groovy

     */
    
    package org.gradle.integtests.fixtures.executer
    
    import org.gradle.test.fixtures.file.TestDirectoryProvider
    import org.junit.rules.MethodRule
    import org.junit.runners.model.FrameworkMethod
    import org.junit.runners.model.Statement
    
    abstract class InitScriptExecuterFixture implements MethodRule {
    
        GradleExecuter executer
        TestDirectoryProvider testDir
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top