Example #1
0
 public function testFindCeModelBySlugAndOwnerId()
 {
     $model = $this->manager->findCeModelBySlugAndOwnerId('model1', 1);
     $adminModel = $this->manager->findCeModelBySlugAndOwnerId('admin_model_1');
     $this->assertEquals('Model1', $model->getName());
     $this->assertEquals('Admin model 1', $adminModel->getName());
 }