No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

35 líneas
790B

  1. <?php
  2. /**
  3. * A base test case with some custom expectations.
  4. *
  5. * @author Rouven Weßling
  6. */
  7. class SwiftMailerTestCase extends \PHPUnit_Framework_TestCase
  8. {
  9. public static function regExp($pattern)
  10. {
  11. if (!is_string($pattern)) {
  12. throw PHPUnit_Util_InvalidArgumentHelper::factory(1, 'string');
  13. }
  14. return new PHPUnit_Framework_Constraint_PCREMatch($pattern);
  15. }
  16. public function assertIdenticalBinary($expected, $actual, $message = '')
  17. {
  18. $constraint = new IdenticalBinaryConstraint($expected);
  19. self::assertThat($actual, $constraint, $message);
  20. }
  21. protected function tearDown()
  22. {
  23. \Mockery::close();
  24. }
  25. protected function getMockery($class)
  26. {
  27. return \Mockery::mock($class);
  28. }
  29. }