File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/org/apache/ibatis/submitted/cursor_simple Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 31
31
import org .apache .ibatis .session .SqlSessionFactoryBuilder ;
32
32
import org .junit .jupiter .api .Assertions ;
33
33
import org .junit .jupiter .api .BeforeAll ;
34
- import org .junit .jupiter .api .Disabled ;
34
+ import org .junit .jupiter .api .MethodOrderer ;
35
35
import org .junit .jupiter .api .Test ;
36
+ import org .junit .jupiter .api .TestMethodOrder ;
36
37
38
+ @ TestMethodOrder (MethodOrderer .MethodName .class )
37
39
class CursorSimpleTest {
38
40
39
41
private static SqlSessionFactory sqlSessionFactory ;
@@ -130,8 +132,6 @@ void cursorClosedOnSessionClose() {
130
132
Assertions .assertFalse (usersCursor .isConsumed ());
131
133
}
132
134
133
- // TODO 12/28/2024 JWL Unstable test
134
- @ Disabled
135
135
@ Test
136
136
void cursorWithRowBound () {
137
137
try (SqlSession sqlSession = sqlSessionFactory .openSession ()) {
You can’t perform that action at this time.
0 commit comments