ConsolePrinter.php 367 B

123456789101112131415
  1. <?php
  2. namespace Codeception\PHPUnit;
  3. /**
  4. * Printer implementing this interface prints output to console, thus should be marked as printer and not just a logger
  5. *
  6. * Interface ConsolePrinter
  7. * @package Codeception\PHPUnit
  8. */
  9. interface ConsolePrinter
  10. {
  11. public function write($buffer);
  12. public function printResult(\PHPUnit\Framework\TestResult $result);
  13. }