namespaced_class.phpt 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. --TEST--
  2. PHPUnit_Framework_MockObject_Generator::generate('NS\Foo', array(), 'MockFoo', TRUE, TRUE)
  3. --FILE--
  4. <?php
  5. namespace NS;
  6. class Foo
  7. {
  8. public function bar(Foo $foo)
  9. {
  10. }
  11. public function baz(Foo $foo)
  12. {
  13. }
  14. }
  15. require __DIR__ . '/../../vendor/autoload.php';
  16. $generator = new \PHPUnit_Framework_MockObject_Generator;
  17. $mock = $generator->generate(
  18. 'NS\Foo',
  19. array(),
  20. 'MockFoo',
  21. TRUE,
  22. TRUE
  23. );
  24. print $mock['code'];
  25. ?>
  26. --EXPECTF--
  27. class MockFoo extends NS\Foo implements PHPUnit_Framework_MockObject_MockObject
  28. {
  29. private $__phpunit_invocationMocker;
  30. private $__phpunit_originalObject;
  31. public function __clone()
  32. {
  33. $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationMocker();
  34. }
  35. public function bar(NS\Foo $foo)
  36. {
  37. $arguments = array($foo);
  38. $count = func_num_args();
  39. if ($count > 1) {
  40. $_arguments = func_get_args();
  41. for ($i = 1; $i < $count; $i++) {
  42. $arguments[] = $_arguments[$i];
  43. }
  44. }
  45. $result = $this->__phpunit_getInvocationMocker()->invoke(
  46. new PHPUnit_Framework_MockObject_Invocation_Object(
  47. 'NS\Foo', 'bar', $arguments, $this, TRUE
  48. )
  49. );
  50. return $result;
  51. }
  52. public function baz(NS\Foo $foo)
  53. {
  54. $arguments = array($foo);
  55. $count = func_num_args();
  56. if ($count > 1) {
  57. $_arguments = func_get_args();
  58. for ($i = 1; $i < $count; $i++) {
  59. $arguments[] = $_arguments[$i];
  60. }
  61. }
  62. $result = $this->__phpunit_getInvocationMocker()->invoke(
  63. new PHPUnit_Framework_MockObject_Invocation_Object(
  64. 'NS\Foo', 'baz', $arguments, $this, TRUE
  65. )
  66. );
  67. return $result;
  68. }
  69. public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
  70. {
  71. return $this->__phpunit_getInvocationMocker()->expects($matcher);
  72. }
  73. public function method()
  74. {
  75. $any = new PHPUnit_Framework_MockObject_Matcher_AnyInvokedCount;
  76. $expects = $this->expects($any);
  77. return call_user_func_array(array($expects, 'method'), func_get_args());
  78. }
  79. public function __phpunit_setOriginalObject($originalObject)
  80. {
  81. $this->__phpunit_originalObject = $originalObject;
  82. }
  83. public function __phpunit_getInvocationMocker()
  84. {
  85. if ($this->__phpunit_invocationMocker === NULL) {
  86. $this->__phpunit_invocationMocker = new PHPUnit_Framework_MockObject_InvocationMocker;
  87. }
  88. return $this->__phpunit_invocationMocker;
  89. }
  90. public function __phpunit_hasMatchers()
  91. {
  92. return $this->__phpunit_getInvocationMocker()->hasMatchers();
  93. }
  94. public function __phpunit_verify()
  95. {
  96. $this->__phpunit_getInvocationMocker()->verify();
  97. $this->__phpunit_invocationMocker = NULL;
  98. }
  99. }