Example #1
0
 public function test_get_ObjectNotFoundAndCallbackReturnsNull_setNotCalled()
 {
     $obj = $this->getTestSubjectWithNotCachedObject();
     $this->connector->expects($this->never())->method('set');
     $obj->setDefaultCallback(function () {
         return null;
     });
     $obj->get('a');
 }