Пример #1
0
 public function testCreate()
 {
     $child = new Including();
     $frameModel = FrameModel::create("test-id", array($child));
     $this->assertNotNull($frameModel);
     $this->assertEquals($frameModel->getId(), "test-id");
     $this->assertEquals($frameModel->getChildren(), array($child));
 }