File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
src/test/groovy/geoscript Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import geoscript.geom.Point
66import geoscript.feature.Schema
77import geoscript.feature.Field
88import geoscript.feature.Feature
9+ import geoscript.AssertUtil
910
1011/**
1112 * The GmlWriter UnitTest
@@ -36,7 +37,7 @@ class GmlWriterTestCase {
3637</gsf:houses>
3738"""
3839 String actual = writer. write(feature)
39- assertEquals expected, actual
40+ AssertUtil . assertStringsEqual expected, actual
4041 }
4142
4243}
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import static org.junit.Assert.*
55import geoscript.geom.*
66import geoscript.layer.*
77import geoscript.feature.Feature
8+ import geoscript.AssertUtil
89
910class FilterTestCase {
1011
@@ -19,7 +20,6 @@ class FilterTestCase {
1920 assertEquals f1. toString(), f3. toString()
2021
2122 Filter f4 = new Filter (" CARPOOL/PERSON > 0.06" )
22- println f4. toString()
2323 assertEquals " [ (CARPOOL/PERSON) > 0.06 ]" , f4. toString()
2424 }
2525
@@ -43,7 +43,7 @@ class FilterTestCase {
4343</ogc:PropertyIsEqualTo>
4444</ogc:Filter>
4545"""
46- assertEquals expected, actual
46+ AssertUtil . assertStringsEqual expected, actual
4747 }
4848
4949 @Test void bbox () {
You can’t perform that action at this time.
0 commit comments