Your IP : 216.73.216.95


Current Path : /var/test/www/storage2/vendor/braintree/braintree_php/tests/unit/
Upload File :
Current File : /var/test/www/storage2/vendor/braintree/braintree_php/tests/unit/MultipleValueOrTextNodeTest.php

<?php
require_once realpath(dirname(__FILE__)) . '/../TestHelper.php';

class Braintree_MultipleValueOrTextNodeTest extends PHPUnit_Framework_TestCase
{
    function testIn()
    {
        $node = new Braintree_MultipleValueOrTextNode('field');
        $node->in(array('firstValue', 'secondValue'));
        $this->assertEquals(array('firstValue', 'secondValue'), $node->toParam());
    }

    function testIs()
    {
        $node = new Braintree_MultipleValueOrTextNode('field');
        $node->is('value');
        $this->assertEquals(array('is' => 'value'), $node->toParam());
    }

    function testIsNot()
    {
        $node = new Braintree_MultipleValueOrTextNode('field');
        $node->isNot('value');
        $this->assertEquals(array('is_not' => 'value'), $node->toParam());
    }

    function testStartsWith()
    {
        $node = new Braintree_MultipleValueOrTextNode('field');
        $node->startsWith('beginning');
        $this->assertEquals(array('starts_with' => 'beginning'), $node->toParam());
    }

    function testEndsWith()
    {
        $node = new Braintree_MultipleValueOrTextNode('field');
        $node->endsWith('end');
        $this->assertEquals(array('ends_with' => 'end'), $node->toParam());
    }

    function testContains()
    {
        $node = new Braintree_MultipleValueOrTextNode('field');
        $node->contains('middle');
        $this->assertEquals(array('contains' => 'middle'), $node->toParam());
    }
}