alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Groovy example source code file (StringTestUtil.groovy)

This example Groovy source code file (StringTestUtil.groovy) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Groovy tags/keywords

string, string, stringtestutil, stringtestutil

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:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.