Index: test/Common/SharpMap.Tests/Converters/WKB/WKBTests.cs =================================================================== diff -u -r8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9 -r5fc71a385897af92ccb092f2f969b5709afab85a --- test/Common/SharpMap.Tests/Converters/WKB/WKBTests.cs (.../WKBTests.cs) (revision 8f6ae890fed8e8eae3a32f9c0498a10f82e0ddf9) +++ test/Common/SharpMap.Tests/Converters/WKB/WKBTests.cs (.../WKBTests.cs) (revision 5fc71a385897af92ccb092f2f969b5709afab85a) @@ -8,11 +8,11 @@ [TestFixture] public class WKBTests { - string multiLinestring = "MULTILINESTRING((10 10,40 50),(20 20,30 20),(20 20,50 20,50 60,20 20))"; - string linestring = "LINESTRING(20 20,20 30,30 30,30 20,40 20)"; - string polygon = "POLYGON((20 20,20 30,30 30,30 20,20 20),(21 21,21 29,29 29,29 21,21 21))"; - string point = "POINT(20.564 346.3493254)"; - string multipoint = "MULTIPOINT(20.564 346.3493254,45 32,23 54)"; + private readonly string multiLinestring = "MULTILINESTRING((10 10,40 50),(20 20,30 20),(20 20,50 20,50 60,20 20))"; + private readonly string linestring = "LINESTRING(20 20,20 30,30 30,30 20,40 20)"; + private readonly string polygon = "POLYGON((20 20,20 30,30 30,30 20,20 20),(21 21,21 29,29 29,29 21,21 21))"; + private readonly string point = "POINT(20.564 346.3493254)"; + private readonly string multipoint = "MULTIPOINT(20.564 346.3493254,45 32,23 54)"; [Test] public void Convert()