Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getConsoleType (0.27 sec)

  1. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/AbstractConsoleConfigurationProgressFunctionalTest.groovy

        BlockingHttpServer server = new BlockingHttpServer()
        GradleHandle gradle
    
        def setup() {
            executer.withConsole(consoleType)
            server.start()
        }
    
        abstract ConsoleOutput getConsoleType()
    
        def "shows work in progress as projects are configured"() {
            createDirs("a", "b", "c", "d")
            settingsFile << """
                include "a", "b", "c", "d"
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/console/AbstractConsoleGroupedTaskFunctionalTest.groovy

            return consoleType == ConsoleOutput.Rich || consoleType == ConsoleOutput.Verbose || consoleType == ConsoleOutput.Auto && consoleAttachment.stderrAttached
        }
    
        abstract ConsoleOutput getConsoleType()
    
        protected StyledOutput styled(Ansi.Color color, Ansi.Attribute attribute) {
            return new StyledOutput(null, color, attribute)
        }
    
        protected StyledOutput styled(Ansi.Attribute attribute) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/jvm/AbstractConsoleJvmTestLoggingFunctionalTest.groovy

        private static final String TEST_TASK_PATH = ":$TEST_TASK_NAME"
        private static final String JAVA_TEST_FILE_PATH = 'src/test/java/MyTest.java'
    
        abstract ConsoleOutput getConsoleType()
    
        def setup() {
            buildFile << javaProject()
        }
    
        def "can group failed test log event with task by default"() {
            given:
            file(JAVA_TEST_FILE_PATH) << javaTestClass {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 14:21:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top