You are here

smtp_tests.mail.inc in SMTP Authentication Support 7

Helper class to test SmtpMailSystem.

File

tests/smtp_tests.mail.inc
View source
<?php

/**
 * @file
 * Helper class to test SmtpMailSystem.
 */

/**
 * Helper class to test SmtpMailSystem.
 */
class SmtpMailSystemWrapper extends SmtpMailSystem {

  /**
   * Expose public method to directly test _get_components().
   */
  public function getComponents($input) {
    return $this
      ->_get_components($input);
  }

}

Classes

Namesort descending Description
SmtpMailSystemWrapper Helper class to test SmtpMailSystem.