/home/desid573/public_html/app/braintree/tests/unit
Edit: /home/desid573/public_html/app/braintree/tests/unit/MultipleValueNodeTest.php (566B)
is('value');
$this->assertEquals(['value'], $node->toParam());
}
public function testIn()
{
$node = new Braintree\MultipleValueNode('field');
$node->in(['firstValue', 'secondValue']);
$this->assertEquals(['firstValue', 'secondValue'], $node->toParam());
}
}