mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
16 lines
310 B
C++
16 lines
310 B
C++
/*
|
|
* Copyright (c) 2025, Gregory Bertilson <gregory@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibCore/EventLoop.h>
|
|
#include <LibTest/TestCase.h>
|
|
|
|
TEST_CASE(test_poll_for_events)
|
|
{
|
|
Core::EventLoop event_loop;
|
|
|
|
event_loop.pump(Core::EventLoop::WaitMode::PollForEvents);
|
|
}
|