* Copyright (c) 2006, Larry E. Masters Shorewood, IL. 60431 * Author(s): Larry E. Masters aka PhpNut * * Licensed under The Open Group Test Suite License * Redistributions of files must retain the above copyright notice. * * @filesource * @author Larry E. Masters aka PhpNut * @copyright Copyright (c) 2006, Larry E. Masters Shorewood, IL. 60431 * @link http://www.phpnut.com/projects/ * @package test_suite * @subpackage test_suite.cases.app * @since CakePHP Test Suite v 1.0.0.0 * @version $Revision$ * @modifiedby $LastChangedBy$ * @lastmodified $Date$ * @license http://www.opensource.org/licenses/opengroup.php The Open Group Test Suite License */ require_once LIBS.'../app_helper.php'; require_once LIBS.DS.'view'.DS.'helper.php'; require_once LIBS.DS.'view'.DS.'helpers'.DS.'html.php'; require_once LIBS.DS.'view'.DS.'helpers'.DS.'form.php'; require_once LIBS.DS.'view'.DS.'helpers'.DS.'javascript.php'; /** * Short description for class. * * @package test_suite * @subpackage test_suite.cases.libs * @since CakePHP Test Suite v 1.0.0.0 */ class JavascriptTest extends UnitTestCase { function setUp() { $this->js = new JavascriptHelper(); $this->js->Html = new HtmlHelper(); $this->js->Form = new FormHelper(); } function testObjectGeneration() { $object = array('title' => 'New thing', 'indexes' => array(5, 6, 7, 8)); $result = $this->js->object($object); $expected = '{"title":"New thing", "indexes":[5, 6, 7, 8]}'; $this->assertEqual($result, $expected, "Error generating JavaScript object, expected '{$expected}', got '{$result}'."); } function tearDown() { unset($this->js); } } ?>