Skip to content

Commit c51a330

Browse files
committed
chore: add test application to couchbase
1 parent f0a08f6 commit c51a330

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)