* Tests geodetic calculator involving a coordinate operation.
* Our test uses a simple geographic CRS with only the axis order interchanged.
*/
@Test
public void testUsingTransform() throws FactoryException, TransformException {
final GeographicCRS crs = new DefaultGeographicCRS("Test", DefaultGeodeticDatum.WGS84,
new DefaultEllipsoidalCS("Test", DefaultCoordinateSystemAxis.LATITUDE,
DefaultCoordinateSystemAxis.LONGITUDE));
final GeodeticCalculator calculator = new GeodeticCalculator(crs);
assertSame(crs, calculator.getCoordinateReferenceSystem());