* Verifies the vertical datum enumeration.
*/
@Test
public void testVertical() {
for (final CommonCRS.Vertical e : CommonCRS.Vertical.values()) {
final VerticalDatumType datumType;
final String axisName, datumName;
switch (e) {
case BAROMETRIC: axisName = "Barometric altitude"; datumName = "Constant pressure surface"; datumType = VerticalDatumType. BAROMETRIC; break;
case MEAN_SEA_LEVEL: axisName = "Gravity-related height"; datumName = "Mean Sea Level"; datumType = VerticalDatumType. GEOIDAL; break;
case DEPTH: axisName = "Depth"; datumName = "Mean Sea Level"; datumType = VerticalDatumType. GEOIDAL; break;