notcurses/tests/exceptions.cpp

11 lines
190 B
C++

#define NCPP_EXCEPTIONS_PLEASE
#include "main.h"
TEST_CASE("Exceptions") {
SUBCASE("Notcurses") {
CHECK_THROWS_AS(ncpp::NotCurses::get_instance(), ncpp::invalid_state_error);
}
}