예제 #1
0
 public function testCanSetResizeCrop()
 {
     $krakenOptions = new KrakenOptions('fake_key', 'fake_secret');
     $krakenOptions->resizeCrop(100, 100);
     $this->assertEquals(['auth' => ['api_key' => 'fake_key', 'api_secret' => 'fake_secret'], 'resize' => ['strategy' => 'crop', 'width' => 100, 'height' => 100], 'wait' => true], $krakenOptions->getConfiguredOptions());
 }