pharo-graphics / Toplo

A widget framework on top of Bloc
MIT License
17 stars 8 forks source link

New Example Runner #48

Closed Enzo-Demeulenaere closed 11 months ago

Enzo-Demeulenaere commented 1 year ago

Hi I created a little Example Runner that can check all examples.

For now it works for the ToSandBox class that now inherits from the new ToExampleTest class. This runner will execute all examples but those open a window and I don't know how to capture it so we can kill it (because it will open +100 windows)

plantec commented 1 year ago

have a look at #BlElement>>inASpace. It adds the receiver in a space but without opening it. It should your Example Runner responsibility to manage all the spaces (open/close them). no ?

Enzo-Demeulenaere commented 1 year ago

Yes it will be its responsibility but for now I just didn't know how to do it so I will check this