Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for statusBarIsBoldByDefault (0.37 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/DefaultColorMapTest.groovy

            0 * ansi._
    
            when:
            color.off(ansi)
    
            then:
            1 * ansi.a(Attribute.RESET)
            0 * ansi._
        }
    
        def statusBarIsBoldByDefault() {
            Ansi ansi = Mock()
    
            when:
            def color = map.statusBarColor
            color.on(ansi)
    
            then:
            1 * ansi.a(Attribute.INTENSITY_BOLD)
            0 * ansi._
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top