|
Groovy example source code file (StringTestUtil.groovy)
The Groovy StringTestUtil.groovy source code
package groovy.util
import junit.framework.Assert
class StringTestUtil {
static void assertMultilineStringsEqual(String a, String b) {
def aLines = a.trim().replaceAll('\r','').split('\n')
def bLines = b.trim().replaceAll('\r','').split('\n')
assert aLines.size() == bLines.size()
for (i in 0..<aLines.size()) {
Assert.assertEquals(aLines[i].trim(), bLines[i].trim())
}
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy StringTestUtil.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.