Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 61 for testDescriptor (0.23 sec)

  1. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultSettingsTest.groovy

            then:
            settings.rootProject.children.size() == 2
            testDescriptor(settings.project(":$projectA"), projectA, new File(settingsDir, projectA))
            testDescriptor(settings.project(":$projectB"), projectB, new File(settingsDir, projectB))
    
            settings.project(":$projectB").getChildren().size() == 1
            testDescriptor(settings.project(":$projectB:$projectC"), projectC, new File(settingsDir, "$projectB/$projectC"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 01 18:57:54 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestOutputListener.java

        /**
         * Fired when during test execution anything is printed to standard output or error
         *
         * @param testDescriptor describes the test
         * @param outputEvent the event that contains the output message and the destination (standard output or error, etc.)
         */
        void onOutput(TestDescriptor testDescriptor, TestOutputEvent outputEvent);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessorTest.groovy

        def "outputs for completed tests use parent descriptors"() {
            given:
            TestDescriptor root = new DefaultTestSuiteDescriptor("1", "CanineSuite");
            TestDescriptor suite = new DefaultTestSuiteDescriptor("1.1", "DogTest");
            TestDescriptor test1 = new DefaultTestDescriptor("1.1.1", "DogTest", "shouldBarkAtStrangers");
            TestDescriptor test2 = new DefaultTestDescriptor("1.1.2", "DogTest", "shouldLoiter");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestOutputListenerIntegrationTest.groovy

                    def logger
    
                    public void onOutput(TestDescriptor descriptor, TestOutputEvent event) {
                        logger.lifecycle(descriptor.toString() + " " + event.destination + " " + event.message);
                    }
                }
    
                class RemoveMeListener implements TestOutputListener {
                    public void onOutput(TestDescriptor descriptor, TestOutputEvent event) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/ShortExceptionFormatter.java

        }
    
        @Override
        public String format(TestDescriptor descriptor, List<Throwable> exceptions) {
            StringBuilder builder = new StringBuilder();
            for (Throwable exception : exceptions) {
                printException(descriptor, exception, false, 1, builder);
            }
            return builder.toString();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestExecutionResultEvaluator.java

                if (!testDescriptor.isComposite() && testResult.getFailedTestCount() != 0) {
                    failedTests.add(new FailedTest(testDescriptor.getName(), testDescriptor.getClassName(), getTaskPath(buildOperation.getId(), testDescriptor)));
                }
            }
        }
    
        private String getTaskPath(OperationIdentifier buildOperationId, TestDescriptorInternal descriptor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4TestListenerIntegrationTest.groovy

                    void beforeSuite(TestDescriptor suite) { println "START [\$suite] [\$suite.name]" }
                    void afterSuite(TestDescriptor suite, TestResult result) { println "FINISH [\$suite] [\$suite.name]" }
                    void beforeTest(TestDescriptor test) { println "START [\$test] [\$test.name]" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/CrossVersionTestEngine.java

            this.discoveryRequest = request;
        }
    
        TestDescriptor discover(final TestEngine discoveryEngine) {
            return SystemProperties.getInstance().withSystemProperties(systemProperties, new Factory<TestDescriptor>() {
                @Override
                public TestDescriptor create() {
                    return discoveryEngine.discover(discoveryRequest, id);
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/logging/TestExceptionFormatter.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.logging;
    
    import org.gradle.api.tasks.testing.TestDescriptor;
    
    import java.util.*;
    
    public interface TestExceptionFormatter {
        String format(TestDescriptor descriptor, List<Throwable> exceptions);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 865 bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/operations/ExecuteTestBuildOperationType.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.operations;
    
    import org.gradle.api.tasks.testing.TestDescriptor;
    import org.gradle.api.tasks.testing.TestOutputEvent;
    import org.gradle.api.tasks.testing.TestResult;
    import org.gradle.internal.operations.BuildOperationType;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top