Example #1
0
 /**
  * RTFN
  */
 public function testCloneObject()
 {
     $result = $this->testable->cloneObject(1);
     $this->assertNotEmpty($result);
     $this->assertTrue(is_object($result));
     $this->assertInstanceOf('Kachit\\Collection\\ItemInterface', $result);
     $this->assertFalse($result === $this->testable->get(1));
 }