All Downloads are FREE. Search and download functionalities are using the official Maven repository.

groovy.util.StringTestUtil.groovy Maven / Gradle / Ivy

There is a newer version: 3.0.22
Show newest version
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..




© 2015 - 2024 Weber Informatics LLC | Privacy Policy