@Test
public void testTrimStringsCommas() throws Exception {
// not sure if this makes any sense, but the sytax allows it, and it's like not
// specifying anything
DimensionTrimType result = (DimensionTrimType) parser.parse("mydim(\"a,b\",\"c,d\")");
assertEquals("mydim", result.getDimension());
assertNull(result.getCRS());
assertEquals("a,b", result.getTrimLow());
assertEquals("c,d", result.getTrimHigh());
}