response = new Response(new SwooleResponse()); $registry = new Registry('test-project'); $this->mapper = new Mapper($registry, $this->response->getModels()); } /** * @throws \Exception */ public function testCreateTypeMapping() { $model = $this->response->getModel(Response::MODEL_TABLE); $type = $this->mapper->model(\ucfirst($model->getType())); $this->assertEquals('Table', $type->name); } }