Пример #1
0
 public function testRequestCacheGetCacheKeyNotImplemented()
 {
     $this->setUpCommonExpectations();
     $requestCache = $this->getMock('Odesk\\Phystrix\\RequestCache');
     $requestCache->expects($this->never())->method('get');
     $requestCache->expects($this->never())->method('put');
     $this->command->setRequestCache($requestCache);
     $this->assertEquals('run result', $this->command->execute());
 }