Pull request #11 only took into account instance-side API, but it would be handy to do it as well for creation. For example:
test02CreateWindow
| window |
window :=
lib
newWindowTitle: #test02CreateWindow
w: 800 h: 600 flags: 0.
self assertEmptySDLError.
self deny: window isNull.
self assert: window extent equals: 800 @ 600.
self waitToSee.
window destroy.
self assertEmptySDLError
Pull request #11 only took into account instance-side API, but it would be handy to do it as well for creation. For example: