| 256 | } |
| 257 | |
| 258 | class FakeUser implements IUser { |
| 259 | private $uid; |
| 260 | |
| 261 | public function __construct(string $uid) { |
| 262 | $this->uid = $uid; |
| 263 | } |
| 264 | |
| 265 | public function getUID() { |
| 266 | return $this->uid; |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | class FakeUrlGenerator implements IURLGenerator { |
| 271 | public function getAbsoluteURL($url) { |
nothing calls this directly
no outgoing calls
no test coverage detected