1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-09 20:12:21 +02:00
Beef/IDE/Tests/DebuggerTest01/scripts/Container01.txt
2019-11-07 06:49:32 -08:00

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")