示例#1
0
 /**
  * @covers Paradox\pod\Document::compareToolbox
  */
 public function testCompareToolbox()
 {
     $toolbox = $this->getClient()->getToolbox();
     $document = new Document($toolbox, "mycollection");
     $this->assertTrue($document->compareToolbox($toolbox), "The toolbox compared is referenced by the document, so should return true");
     $this->assertFalse($this->document->compareToolbox($toolbox), "The toolbox compared is not referenced by the document, so should return false");
 }