Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for breaksUpWhitespaceOnlyCommandLineIntoEmptyList (2.32 sec)

  1. subprojects/core/src/test/groovy/org/gradle/util/internal/ArgumentsSplitterTest.groovy

    class ArgumentsSplitterTest extends Specification {
    
        def breaksUpEmptyCommandLineIntoEmptyList() {
            expect:
            split('') == []
        }
    
        def breaksUpWhitespaceOnlyCommandLineIntoEmptyList() {
            expect:
            split(' \t ') == []
        }
    
        def breaksUpCommandLineIntoSpaceSeparatedArgument() {
            expect:
            split('a') == ['a']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:16:41 UTC 2013
    - 2.2K bytes
    - Viewed (0)
Back to top