Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getConsoleType (0.18 sec)

  1. 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)
  2. 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