Current Path : /var/test/www/storage/vendor/braintree/braintree_php/tests/unit/ |
Current File : /var/test/www/storage/vendor/braintree/braintree_php/tests/unit/SubscriptionTest.php |
<?php require_once realpath(dirname(__FILE__)) . '/../TestHelper.php'; class Braintree_SubscriptionTest extends PHPUnit_Framework_TestCase { function testErrorsOnFindWithBlankArgument() { $this->setExpectedException('InvalidArgumentException'); Braintree_Subscription::find(''); } function testErrorsOnFindWithWhitespaceArgument() { $this->setExpectedException('InvalidArgumentException'); Braintree_Subscription::find('\t'); } }