Current Path : /var/test/www/storage2/vendor/braintree/braintree_php/tests/unit/ |
Current File : /var/test/www/storage2/vendor/braintree/braintree_php/tests/unit/MultipleValueNodeTest.php |
<?php require_once realpath(dirname(__FILE__)) . '/../TestHelper.php'; class Braintree_MultipleValueNodeTest extends PHPUnit_Framework_TestCase { function testIs() { $node = new Braintree_MultipleValueNode('field'); $node->is('value'); $this->assertEquals(array('value'), $node->toParam()); } function testIn() { $node = new Braintree_MultipleValueNode('field'); $node->in(array('firstValue', 'secondValue')); $this->assertEquals(array('firstValue', 'secondValue'), $node->toParam()); } }