Example #1
0
 /**
  * @dataProvider shopSuccessProvider
  */
 public function testSetShop($shop, $expected)
 {
     $client = new Client('AccessToken', 'SecretKey');
     $this->assertNull($client->getShop());
     $client->setShop($shop);
     $this->assertSame($expected, $client->getShop());
 }