BadMethodCallExceptionTest.class.php 657 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:48.
  4. */
  5. class BadMethodCallExceptionTest extends PHPUnit_Framework_TestCase
  6. {
  7. /**
  8. * @var BadMethodCallException
  9. */
  10. protected $object;
  11. /**
  12. * Sets up the fixture, for example, opens a network connection.
  13. * This method is called before a test is executed.
  14. */
  15. protected function setUp()
  16. {
  17. $this->object = new BadMethodCallException;
  18. }
  19. /**
  20. * Tears down the fixture, for example, closes a network connection.
  21. * This method is called after a test is executed.
  22. */
  23. protected function tearDown()
  24. {
  25. }
  26. }