test: HandoverIT-POC - Splitted up code into smaller classes -- MOVE
[demos/kafka/chat] / src / test / java / de / juplo / kafka / chat / backend / InMemoryWithNoStorageConfigurationIT.java
1 package de.juplo.kafka.chat.backend;
2
3 import org.junit.jupiter.api.Disabled;
4 import org.springframework.boot.test.context.SpringBootTest;
5
6
7 @SpringBootTest(
8                 webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT,
9                 properties = {
10                                 "chat.backend.inmemory.sharding-strategy=none",
11                                 "chat.backend.inmemory.storage-strategy=none" })
12 class InMemoryWithNoStorageConfigurationIT extends AbstractConfigurationIT
13 {
14         @Override
15         @Disabled("Chat-Rooms cannot be restored, if storage is disabled")
16         void testRestoredChatRoomsCanBeListed() {}
17
18         @Override
19         @Disabled("Chat-Rooms cannot be restored, if storage is disabled")
20         void testRestoredChatRoomHasExpectedDetails() {}
21
22         @Override
23         @Disabled("Chat-Rooms cannot be restored, if storage is disabled")
24         void testRestoredMessageForUteHasExpectedText() {}
25
26         @Override
27         @Disabled("Chat-Rooms cannot be restored, if storage is disabled")
28         void testRestoredMessageForPeterHasExpectedText() {}
29 }