7 * This source file is subject to the new BSD license that is bundled
8 * with this package in the file LICENSE.txt.
9 * It is also available through the world-wide-web at this URL:
10 * http://framework.zend.com/license/new-bsd
11 * If you did not receive a copy of the license and are unable to
12 * obtain it through the world-wide-web, please send an email
13 * to license@zend.com so we can send you a copy immediately.
16 * @package Zend_Validate
17 * @subpackage UnitTests
18 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
19 * @license http://framework.zend.com/license/new-bsd New BSD License
27 require_once dirname(__FILE__
) . '/../../TestHelper.php';
30 * @see Zend_Validate_LessThan
32 require_once 'Zend/Validate/LessThan.php';
37 * @package Zend_Validate
38 * @subpackage UnitTests
39 * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
40 * @license http://framework.zend.com/license/new-bsd New BSD License
41 * @group Zend_Validate
43 class Zend_Validate_LessThanTest
extends PHPUnit_Framework_TestCase
46 * Ensures that the validator follows expected behavior
50 public function testBasic()
53 * The elements of each array are, in order:
55 * - expected validation result
56 * - array of test input values
58 $valuesExpected = array(
59 array(100, true, array(-1, 0, 0.01, 1, 99.999)),
60 array(100, false, array(100, 100.0, 100.01)),
61 array('a', false, array('a', 'b', 'c', 'd')),
62 array('z', true, array('x', 'y'))
64 foreach ($valuesExpected as $element) {
65 $validator = new Zend_Validate_LessThan($element[0]);
66 foreach ($element[2] as $input) {
67 $this->assertEquals($element[1], $validator->isValid($input));
73 * Ensures that getMessages() returns expected default value
77 public function testGetMessages()
79 $validator = new Zend_Validate_LessThan(10);
80 $this->assertEquals(array(), $validator->getMessages());
84 * Ensures that getMax() returns expected value
88 public function testGetMax()
90 $validator = new Zend_Validate_LessThan(10);
91 $this->assertEquals(10, $validator->getMax());