We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53ce614 commit df88a91Copy full SHA for df88a91
1 file changed
datastore/src/test/java/io/spine/server/storage/datastore/DsCatchUpSmokeTest.java
@@ -36,23 +36,21 @@
36
*
37
* <p>The tests are extremely slow, so several long tests from {@link CatchUpTest} are disabled.
38
*/
39
-@DisplayName("Datastore-backed `CatchUp` should ")
40
@SlowTest
+@DisplayName("Datastore-backed `CatchUp` should ")
41
class DsCatchUpSmokeTest extends CatchUpTest {
42
43
private TestDatastoreStorageFactory factory;
44
45
- @Override
46
@BeforeEach
47
- public void setUp() {
+ void prepareStorageFactory() {
48
factory = TestDatastoreStorageFactory.local();
49
ServerEnvironment.when(Tests.class)
50
.use(factory);
51
}
52
53
54
@AfterEach
55
- public void tearDown() {
+ void tearDownStorageFactory() {
56
if (factory != null) {
57
factory.tearDown();
58
0 commit comments