Exemplo n.º 1
0
 /**
  *
  */
 public function testAttachments()
 {
     //
     $ot = $this->getOnTimeObjectOk();
     $resultT1 = $ot->attachments();
     $this->assertTrue(is_array($resultT1) && isset($resultT1['error']));
     //
     $ot = $this->getOnTimeObjectOk();
     $filterT2 = new Attachments();
     $filterT2->setId(75);
     $resultT2 = $ot->attachments($filterT2);
     $this->assertTrue(is_array($resultT2['data']));
 }