mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
14 lines
230 B
C++
14 lines
230 B
C++
#include "main.h"
|
|
|
|
TEST_CASE("Input") {
|
|
auto nc_ = testing_notcurses();
|
|
if(!nc_){
|
|
return;
|
|
}
|
|
|
|
REQUIRE(0 == notcurses_mouse_enable(nc_));
|
|
CHECK(0 == notcurses_mouse_disable(nc_));
|
|
|
|
CHECK(0 == notcurses_stop(nc_));
|
|
}
|