Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.junit.jupiter.api.extension.ExtendWith;

@ExtendWith(GuicePackageTestExtension.class)
class MyBatisModulePackageTestCase extends AbstractMyBatisModuleTestCase {
class MyBatisModulePackageTestCaseTest extends AbstractMyBatisModuleTestCase {

@Inject
@Named("contactWithAddress")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.junit.jupiter.api.extension.ExtendWith;

@ExtendWith(GuiceTestExtension.class)
public final class MyBatisModuleTestCase extends AbstractMyBatisModuleTestCase {
final class MyBatisModuleTestCaseTest extends AbstractMyBatisModuleTestCase {

@Inject
@Named("contactWithAddress")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.junit.jupiter.api.extension.ExtendWith;

@ExtendWith(XMLAlternateEnvironmentGuiceTestExtension.class)
public final class XMLAlternateEnvironmentMyBatisModuleTestCase extends AbstractMyBatisModuleTestCase {
final class XMLAlternateEnvironmentMyBatisModuleTestCaseTest extends AbstractMyBatisModuleTestCase {

@Inject
private SqlSessionFactory sqlSessionFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.junit.jupiter.api.extension.ExtendWith;

@ExtendWith(XMLGuicePackageTestExtension.class)
class XMLMyBatisModulePackageTestCase extends AbstractMyBatisModuleTestCase {
class XMLMyBatisModulePackageTestCaseTest extends AbstractMyBatisModuleTestCase {

@Inject
@Named("contactWithAddress")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.junit.jupiter.api.extension.ExtendWith;

@ExtendWith(XMLGuiceTestExtension.class)
public final class XMLMyBatisModuleTestCase extends AbstractMyBatisModuleTestCase {
final class XMLMyBatisModuleTestCaseTest extends AbstractMyBatisModuleTestCase {

@Inject
@Named("contactWithAddress")
Expand Down