getContainer(); // only replace the user id $container->registerService('UserId', function($c) { return $this->userId; }); $this->controller = $container->query( 'OCA\MyWiki\Controller\WikiController' ); $this->mapper = $container->query( 'OCA\MyWiki\Db\WikiMapper' ); } public function e($x) { echo "\n>>>$x<<<"; } /* public function testUpdate() { // create a new note that should be updated $wiki = new Wiki(); $wiki->setTitle('old_title'); $wiki->setFileId(4321); $wiki->setUserId($this->userId); $id = $this->mapper->insert($wiki)->getId(); // fromRow does not set the fields as updated $updatedWiki = Wiki::fromRow([ 'id' => $id, 'user_id' => $this->userId ]); $updatedWiki->setTitle('title'); $updatedWiki->setFileId(1234); $result = $this->controller->update($id, 'title', 'file_id'); $this->assertEquals($updatedWiki, $result->getData()); // clean up $this->mapper->delete($result->getData()); } */ }