You are here

function Braintree_PlanTest::testAll_withNoPlans_returnsEmptyArray in Commerce Braintree 7

File

braintree_php/tests/integration/PlanTest.php, line 6

Class

Braintree_PlanTest

Code

function testAll_withNoPlans_returnsEmptyArray() {
  testMerchantConfig();
  $plans = Braintree_Plan::all();
  $this
    ->assertEquals($plans, array());
  integrationMerchantConfig();
}