File tree 2 files changed +7
-4
lines changed
src/main/java/com/antkorwin/springtestmongo/junit5
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 5
5
6
6
<groupId >com.antkorwin</groupId >
7
7
<artifactId >spring-test-mongo</artifactId >
8
- <version >0.9 -SNAPSHOT</version >
8
+ <version >0.10 -SNAPSHOT</version >
9
9
<packaging >jar</packaging >
10
10
11
11
<name >spring-test-mongo</name >
Original file line number Diff line number Diff line change 1
1
package com .antkorwin .springtestmongo .junit5 ;
2
2
3
- import org .junit .jupiter .api .Tag ;
4
- import org .junit .jupiter .api .extension .ExtendWith ;
5
-
6
3
import java .lang .annotation .ElementType ;
7
4
import java .lang .annotation .Retention ;
8
5
import java .lang .annotation .RetentionPolicy ;
9
6
import java .lang .annotation .Target ;
10
7
8
+ import org .junit .jupiter .api .Tag ;
9
+ import org .junit .jupiter .api .extension .ExtendWith ;
10
+
11
+ import org .springframework .test .context .ContextConfiguration ;
12
+
11
13
/**
12
14
* Created on 02.12.2018.
13
15
*
18
20
@ Retention (RetentionPolicy .RUNTIME )
19
21
@ Target (ElementType .TYPE )
20
22
@ Tag ("antkorwin-mongodb-testcontainers" )
23
+ @ ContextConfiguration
21
24
@ ExtendWith (MongoDbTcExtension .class )
22
25
public @interface EnableMongoDbTestContainers {
23
26
}
You can’t perform that action at this time.
0 commit comments