@Override
  protected void doVerify() throws Exception {

    // system.properties

    for (String[] keys : _MIGRATED_SYSTEM_KEYS) {
      String oldKey = keys[0];
      String newKey = keys[1];

      verifyMigratedSystemProperty(oldKey, newKey);
    }

    for (String[] keys : _RENAMED_SYSTEM_KEYS) {
      String oldKey = keys[0];
      String newKey = keys[1];

      verifyRenamedSystemProperty(oldKey, newKey);
    }

    for (String key : _OBSOLETE_SYSTEM_KEYS) {
      verifyObsoleteSystemProperty(key);
    }

    // portal.properties

    for (String[] keys : _MIGRATED_PORTAL_KEYS) {
      String oldKey = keys[0];
      String newKey = keys[1];

      verifyMigratedPortalProperty(oldKey, newKey);
    }

    for (String[] keys : _RENAMED_PORTAL_KEYS) {
      String oldKey = keys[0];
      String newKey = keys[1];

      verifyRenamedPortalProperty(oldKey, newKey);
    }

    for (String key : _OBSOLETE_PORTAL_KEYS) {
      verifyObsoletePortalProperty(key);
    }

    // Document library

    StoreFactory.checkProperties();

    // LDAP

    verifyLDAPProperties();
  }
 @BeforeClass
 public static void setUpClass() throws Exception {
   _storeFactory = StoreFactory.getInstance();
 }