ViewTest.php 832 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * Generated by PHPUnit_SkeletonGenerator on 2014-12-04 at 12:32:34.
  4. */
  5. class ViewTest extends PHPUnit_Framework_TestCase {
  6. /**
  7. * @var View
  8. */
  9. protected $object;
  10. /**
  11. * Sets up the fixture, for example, opens a network connection.
  12. * This method is called before a test is executed.
  13. */
  14. protected function setUp() {
  15. $this->object=new View;
  16. }
  17. /**
  18. * Tears down the fixture, for example, closes a network connection.
  19. * This method is called after a test is executed.
  20. */
  21. protected function tearDown() {
  22. }
  23. /**
  24. * @covers View::GetHTMLFromTemplate
  25. * @todo Implement testGetHTMLFromTemplate().
  26. */
  27. public function testGetHTMLFromTemplate() {
  28. // Remove the following lines when you implement this test.
  29. $this->markTestIncomplete(
  30. 'This test has not been implemented yet.'
  31. );
  32. }
  33. }