@Override
  protected void onDestroy() {
    super.onDestroy();

    if (null != mFtpServer) {
      mFtpServer.stop();
      mFtpServer = null;
    }
  }
 @AfterSuite
 public void destroyServer() {
   if (ftpServer != null && !ftpServer.isStopped()) {
     ftpServer.stop();
   }
 }