mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 12:02:21 +02:00
22 lines
No EOL
511 B
Text
22 lines
No EOL
511 B
Text
# This ensures that we entry [4] remains open even after removing them item above it
|
|
ShowFile("src/Container.bf")
|
|
GotoText("//TestA")
|
|
ToggleBreakpoint()
|
|
GotoText("//TestB")
|
|
ToggleBreakpoint()
|
|
RunWithCompiling()
|
|
ShowWatches()
|
|
AddWatch("list")
|
|
SelectWatch("list")
|
|
OpenSelectedWatches()
|
|
SelectWatch("[4]")
|
|
OpenSelectedWatches()
|
|
FocusWatchDir(2)
|
|
AssertSelectedWatchEquals("5")
|
|
StepOver()
|
|
SelectWatch("[4]")
|
|
FocusWatchDir(2)
|
|
AssertSelectedWatchEquals("6")
|
|
Continue()
|
|
SelectWatch("[4]")
|
|
AssertSelectedWatchEquals("4") |