LimeOutputNone.php 913 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /*
  3. * This file is part of the Lime framework.
  4. *
  5. * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
  6. * (c) Bernhard Schussek <bernhard.schussek@symfony-project.com>
  7. *
  8. * This source file is subject to the MIT license that is bundled
  9. * with this source code in the file LICENSE.
  10. */
  11. class LimeOutputNone implements LimeOutputInterface
  12. {
  13. public function supportsThreading()
  14. {
  15. return true;
  16. }
  17. public function focus($file) {}
  18. public function close() {}
  19. public function plan($amount) {}
  20. public function pass($message, $file, $line) {}
  21. public function fail($message, $file, $line, $error = null) {}
  22. public function skip($message, $file, $line) {}
  23. public function todo($message, $file, $line) {}
  24. public function warning($message, $file, $line) {}
  25. public function error(LimeError $error) {}
  26. public function comment($message) {}
  27. public function flush() {}
  28. }