notcurses/tests/input.cpp

15 lines
293 B
C++
Raw Normal View History

2019-12-23 07:47:34 +00:00
#include "main.h"
TEST_CASE("NotcursesInput") {
notcurses_options nopts{};
struct notcurses* nc_ = notcurses_init(&nopts, nullptr);
if(!nc_){
return;
}
2019-12-23 07:47:34 +00:00
REQUIRE(0 == notcurses_mouse_enable(nc_));
CHECK(0 == notcurses_mouse_disable(nc_));
2019-12-23 07:47:34 +00:00
CHECK(0 == notcurses_stop(nc_));
2019-12-23 07:47:34 +00:00
}