You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.2 KiB

  1. <?php
  2. /*
  3. * @copyright NetMonsters <team@netmonsters.ru>
  4. * @link http://netmonsters.ru
  5. * @package Majestic
  6. * @subpackage UnitTests
  7. * @since 2011-10-11
  8. *
  9. * Unit tests for PHPView class
  10. */
  11. require_once dirname(__FILE__) . '/../../../Registry.php';
  12. require_once dirname(__FILE__) . '/../../../view/helpers/ViewHelper.php';
  13. require_once dirname(__FILE__) . '/../../../view/helpers/HeadViewHelper.php';
  14. class HeadViewHelperTest extends PHPUnit_Framework_TestCase
  15. {
  16. /**
  17. * @var HeadViewHelper
  18. */
  19. public $helper;
  20. public function setUp()
  21. {
  22. Registry::set('HeadViewHelper', array());
  23. $this->helper = new HeadViewHelper(null);
  24. }
  25. public function testHead()
  26. {
  27. $this->helper->head('<meta />');
  28. $result = Registry::get('HeadViewHelper');
  29. $this->assertSame(array('<meta />'), Registry::get('HeadViewHelper'));
  30. $this->helper->head('<link />');
  31. $this->assertSame(array('<meta />', '<link />'), Registry::get('HeadViewHelper'));
  32. }
  33. public function testToString()
  34. {
  35. $this->helper->head('<meta />');
  36. $this->helper->head('<link />');
  37. $result = $this->helper->__toString();
  38. $this->assertSame("<meta />\n <link />\n", $result);
  39. }
  40. }