Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [platform-releng-dev] Official tests vs Maven tests

and code like
```
        // Wiggle the mouse:
        Event mouseMove= new Event();
        mouseMove.x= 10;
        mouseMove.y= 10;
        display.post(mouseMove);
        runEventQueue();
        mouseMove.x= 20;
        mouseMove.y= 20;
        display.post(mouseMove);
        runEventQueue();
```

Also seem to suggest that a screen saver can alter focus and event loop and require specific code in tests (which is not desired).

Back to the top