EventsMailTest.class.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. /**
  3. * Generated by PHPUnit_SkeletonGenerator on 2012-10-01 at 14:44:08.
  4. */
  5. class EventsMailTest extends PHPUnit_Framework_TestCase
  6. {
  7. /**
  8. * @var EventsMail
  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 EventsMail;
  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. /**
  27. * @covers EventsMail::send_mail
  28. * @todo Implement testSend_mail().
  29. */
  30. public function testSend_mail()
  31. {
  32. // Remove the following lines when you implement this test.
  33. $this->markTestIncomplete(
  34. 'This test has not been implemented yet.'
  35. );
  36. }
  37. /**
  38. * @covers EventsMail::check_if_using_class
  39. * @todo Implement testCheck_if_using_class().
  40. */
  41. public function testCheck_if_using_class()
  42. {
  43. // Remove the following lines when you implement this test.
  44. $this->markTestIncomplete(
  45. 'This test has not been implemented yet.'
  46. );
  47. }
  48. }