// for each enabled type, check we added the otherSRS
final List<FeatureTypeInfo> enabledTypes = getCatalog().getFeatureTypes();
for (Iterator<FeatureTypeInfo> it = enabledTypes.iterator(); it.hasNext();) {
FeatureTypeInfo ft = it.next();
if (ft.enabled()) {
String prefixedName = ft.prefixedName();
String base = "//wfs:FeatureType[wfs:Name =\"" + prefixedName + "\"]";
XMLAssert.assertXpathExists(base, doc);
// we generate the other SRS only if it's not equal to native
boolean wgs84Native = "EPSG:4326".equals(ft.getSRS());