Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

abap unit test debug

Former Member
0 Likes
1,667

when use unit test,how to start up debug model?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
951

You can put breakpoints in your unit test methods (or helper methods) the same way you can in regular ABAP. As long as it is being executed in the foreground it should be tripped. I have noticed some quirky behavior about when it allows me to place a breakpoint in the code and when it places the breakpoint on the report statement at the beginning of my program, but it IS possible. I do it frequently.

Regards,

Andy

4 REPLIES 4
Read only

Former Member
0 Likes
951

Refer to the below related threads

Read only

Former Member
0 Likes
951

hi ,

go to the program ztest-> execute->put /H in the command bar-> press enter--->then it will go to the debugging mode...

regards,

venkat.

Read only

Former Member
0 Likes
952

You can put breakpoints in your unit test methods (or helper methods) the same way you can in regular ABAP. As long as it is being executed in the foreground it should be tripped. I have noticed some quirky behavior about when it allows me to place a breakpoint in the code and when it places the breakpoint on the report statement at the beginning of my program, but it IS possible. I do it frequently.

Regards,

Andy

Read only

Former Member
0 Likes
951

thank