Moved API\Notification tests

This commit is contained in:
Philipp
2021-11-12 21:35:21 +01:00
parent f2ca21935e
commit 6725f05ab2
8 changed files with 161 additions and 86 deletions

View File

@@ -10,13 +10,13 @@ class DeleteTest extends ApiTest
{
public function testEmpty()
{
self::expectException(BadRequestException::class);
$this->expectException(BadRequestException::class);
Delete::rawContent();
}
public function testWrong()
{
self::expectException(BadRequestException::class);
$this->expectException(BadRequestException::class);
Delete::rawContent(['album' => 'album_name']);
}