|
Groovy example source code file (StringHelperTest.groovy)
The Groovy StringHelperTest.groovy source code
package org.codehaus.groovy.tools
import static org.codehaus.groovy.tools.StringHelper.*
class StringHelperTest extends GroovyTestCase {
void testTokenize() {
assert tokenizeUnquoted("a b") == ["a","b"]
assert tokenizeUnquoted("a 'b a'") == ["a","'b a'"]
assert tokenizeUnquoted(" a 'b a'") == ["a","'b a'"]
assert tokenizeUnquoted(" a 'b a'" ) == ["a","'b a'"]
assert tokenizeUnquoted('a "b a"') == ["a",'"b a"']
assert tokenizeUnquoted("a 'b \"a c\"'") == ["a","'b \"a c\"'"]
assert tokenizeUnquoted("a \"b 'a c'\"") == ["a","\"b 'a c'\""]
assert tokenizeUnquoted("'a ") == ["'a "]
assert tokenizeUnquoted("\"a 'b'") == ["\"a 'b'"]
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy StringHelperTest.groovy source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.