We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0a08f6 commit c51a330Copy full SHA for c51a330
boot-data-couchbase/src/test/java/com/example/demo/TestDemoApplication.java
@@ -0,0 +1,12 @@
1
+package com.example.demo;
2
+
3
+import org.springframework.boot.SpringApplication;
4
5
+public class TestDemoApplication {
6
+ public static void main(String[] args) {
7
+ System.getProperties().putIfAbsent("spring.profiles.active", "dev");
8
+ SpringApplication.from(DemoApplication::main)
9
+ .with(TestcontainersConfiguration.class)
10
+ .run(args);
11
+ }
12
+}
0 commit comments