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.

47 lines
1.3 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/TitleViewHelper.php';
  14. class TitleViewHelperTest extends PHPUnit_Framework_TestCase
  15. {
  16. public $helper;
  17. public function setUp()
  18. {
  19. Registry::set('TitleViewHelper', array());
  20. $this->helper = new TitleViewHelper('view');
  21. }
  22. public function testTitle()
  23. {
  24. $this->helper->title('one');
  25. $result = Registry::get('TitleViewHelper');
  26. $this->assertSame(array('one'), Registry::get('TitleViewHelper'));
  27. $this->helper->title('two');
  28. $this->assertSame(array('one', 'two'), Registry::get('TitleViewHelper'));
  29. }
  30. public function testSeparator()
  31. {
  32. $this->helper->title('one');
  33. $this->helper->title('two');
  34. $this->assertSame('one - two', $this->helper->__toString());
  35. $this->helper->setSeparator('=');
  36. $this->assertSame('one=two', $this->helper->__toString());
  37. }
  38. }