public function testIn()
 {
     $node = new Braintree\MultipleValueNode('field');
     $node->in(['firstValue', 'secondValue']);
     $this->assertEquals(['firstValue', 'secondValue'], $node->toParam());
 }