public function testSetGetService()
 {
     $service = new UserService();
     $controller = new UserController($service);
     $gotService = $controller->getUserService();
     $this->assertTrue($gotService instanceof UserService);
 }