chore(alerts): delete orphan PostgresAlertReadRepositoryIT

The class under test was removed in da281933; the IT became a @Disabled
placeholder. Deleting per no-backwards-compat policy. Read mutation
coverage lives in PostgresAlertInstanceRepositoryIT going forward.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-21 18:00:00 +02:00
parent da2819332c
commit e1321a4002

View File

@@ -1,18 +0,0 @@
package com.cameleer.server.app.alerting.storage;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Placeholder — PostgresAlertReadRepository was deleted in Task 5.
* Task 7 will rewrite this test class to cover the new read/delete mutation methods
* on {@link com.cameleer.server.app.alerting.storage.PostgresAlertInstanceRepository}.
*/
@Disabled("Task 7: rewrite after AlertReadRepository removal")
class PostgresAlertReadRepositoryIT {
@Test
void placeholder() {
// replaced in Task 7
}
}