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 53f58c7 commit d2c672cCopy full SHA for d2c672c
src/test/java/org/mybatis/spring/SqlSessionFactoryBeanTest.java
@@ -73,17 +73,6 @@ public void testOtherTransactionFactoryClass() throws Exception {
73
assertConfig(factoryBean.getObject(), JdbcTransactionFactory.class);
74
}
75
76
- // the MyBatis API allows null and empty environment names, so we should allow them too
77
- @Test
78
- public void testNullEnvironment() throws Exception {
79
- setupFactoryBean();
80
-
81
- factoryBean.setEnvironment(null);
82
83
- assertConfig(factoryBean.getObject(), null,
84
- org.mybatis.spring.transaction.SpringManagedTransactionFactory.class);
85
- }
86
87
@Test
88
public void testEmptyStringEnvironment() throws Exception {
89
setupFactoryBean();
0 commit comments