/**
  * @test
  */
 public function isSetterGetterWorkingForId()
 {
     $this->fixture->setId(99);
     $this->assertSame(99, $this->fixture->getId());
 }
Пример #2
0
 /**
  * @test
  */
 public function isSetterGetterWorkingForList()
 {
     $list = new \Aijko\SharepointConnector\Domain\Model\Mapping\Lists();
     $this->fixture->setList($list);
     $this->assertSame($list, $this->fixture->getList());
 }
 /**
  * @test
  */
 public function getCalculatedCacheIdentifier()
 {
     $this->assertSame('9e6bb46f281e9a1001428ff7ba91bf9e3b559b9a', $this->fixture->calculateCacheIdentifier('SharepointConnector'));
 }