File tree Expand file tree Collapse file tree 2 files changed +0
-9
lines changed
src/test/java/org/mybatis/spring/sample Expand file tree Collapse file tree 2 files changed +0
-9
lines changed Original file line number Diff line number Diff line change 236
236
<version >5.2.0</version >
237
237
<scope >test</scope >
238
238
</dependency >
239
- <dependency >
240
- <groupId >org.mockito</groupId >
241
- <artifactId >mockito-junit-jupiter</artifactId >
242
- <version >5.2.0</version >
243
- <scope >test</scope >
244
- </dependency >
245
239
246
240
<dependency >
247
241
<groupId >org.assertj</groupId >
Original file line number Diff line number Diff line change 18
18
import static org .assertj .core .api .Assertions .assertThat ;
19
19
20
20
import org .junit .jupiter .api .Test ;
21
- import org .junit .jupiter .api .extension .ExtendWith ;
22
- import org .mockito .junit .jupiter .MockitoExtension ;
23
21
import org .mybatis .spring .sample .domain .User ;
24
22
import org .mybatis .spring .sample .service .BarService ;
25
23
import org .springframework .beans .factory .annotation .Autowired ;
30
28
* Example of basic MyBatis-Spring integration usage with a manual DAO implementation that subclasses
31
29
* SqlSessionDaoSupport.
32
30
*/
33
- @ ExtendWith (MockitoExtension .class )
34
31
@ DirtiesContext
35
32
@ SpringJUnitConfig (locations = { "classpath:org/mybatis/spring/sample/config/applicationContext-sqlsession.xml" })
36
33
class SampleSqlSessionTest {
You can’t perform that action at this time.
0 commit comments