TaskMock.php 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. /*
  3. * $Id$
  4. *
  5. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  6. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  7. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  8. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  9. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  10. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  11. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  12. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  13. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  14. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  15. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  16. *
  17. * This software consists of voluntary contributions made by many individuals
  18. * and is licensed under the LGPL. For more information, see
  19. * <http://www.doctrine-project.org>.
  20. */
  21. namespace Doctrine\Tests\Mocks;
  22. use Doctrine\Common\Cli\AbstractNamespace;
  23. /**
  24. * TaskMock used for testing the CLI interface.
  25. * @author Nils Adermann <naderman@naderman.de>
  26. */
  27. class TaskMock extends \Doctrine\Common\Cli\Tasks\AbstractTask
  28. {
  29. /**
  30. * Since instances of this class can be created elsewhere all instances
  31. * register themselves in this array for later inspection.
  32. *
  33. * @var array(TaskMock)
  34. */
  35. static public $instances = array();
  36. private $runCounter = 0;
  37. /**
  38. * Constructor of Task Mock Object.
  39. * Makes sure the object can be inspected later.
  40. *
  41. * @param AbstractNamespace CLI Namespace, passed to parent constructor
  42. */
  43. function __construct(AbstractNamespace $namespace)
  44. {
  45. self::$instances[] = $this;
  46. parent::__construct($namespace);
  47. }
  48. /**
  49. * Returns the number of times run() was called on this object.
  50. *
  51. * @return int
  52. */
  53. public function getRunCounter()
  54. {
  55. return $this->runCounter;
  56. }
  57. /* Mock API */
  58. /**
  59. * Method invoked by CLI to run task.
  60. */
  61. public function run()
  62. {
  63. $this->runCounter++;
  64. }
  65. /**
  66. * Method supposed to generate the CLI Task Documentation
  67. */
  68. public function buildDocumentation()
  69. {
  70. }
  71. }