Polishing.

Reformat code. Refine dependencies.

See #650
Original pull request: #663
This commit is contained in:
Mark Paluch
2023-05-15 11:25:40 +02:00
parent 244f971d1a
commit 545d957031
12 changed files with 310 additions and 319 deletions

View File

@@ -15,19 +15,26 @@
*/
package com.example.demo;
import example.springdata.couchbase.util.EnabledIfCouchbaseAvailable;
import org.junit.ClassRule;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ContextConfiguration;
import example.springdata.couchbase.util.CouchbaseAvailableRule;
/**
* @author Michael Reiche
* @author Christoph Strobl
*/
@EnabledIfCouchbaseAvailable
@SpringBootTest
@ContextConfiguration(classes = DemoApplication.class)
class DemoApplicationTests {
@Test
void contextLoads() {
}
@ClassRule //
public static CouchbaseAvailableRule COUCHBASE = CouchbaseAvailableRule.onLocalhost();
@Test
void contextLoads() {
}
}