notcurses/tests/direct.cpp

41 lines
1.0 KiB
C++
Raw Normal View History

2020-02-05 09:08:42 +00:00
#include "main.h"
2020-07-10 19:51:28 +00:00
#include <notcurses/direct.h>
2020-02-05 09:08:42 +00:00
TEST_CASE("DirectMode") {
struct ncdirect* nc_ = ncdirect_init(NULL, stdout, 0);
if(!nc_){
2020-02-05 09:08:42 +00:00
return;
}
SUBCASE("SetItalic") {
CHECK(0 == ncdirect_styles_set(nc_, NCSTYLE_ITALIC));
printf("DirectMode *italic*!\n");
fflush(stdout);
2020-02-05 09:08:42 +00:00
CHECK(0 == ncdirect_styles_off(nc_, NCSTYLE_ITALIC));
}
SUBCASE("SetBold") {
CHECK(0 == ncdirect_styles_set(nc_, NCSTYLE_BOLD));
printf("DirectMode *bold*!\n");
fflush(stdout);
2020-02-05 09:08:42 +00:00
CHECK(0 == ncdirect_styles_off(nc_, NCSTYLE_BOLD));
}
SUBCASE("SetUnderline") {
CHECK(0 == ncdirect_styles_set(nc_, NCSTYLE_UNDERLINE));
printf("DirectMode *underline*!\n");
fflush(stdout);
2020-02-05 09:08:42 +00:00
CHECK(0 == ncdirect_styles_off(nc_, NCSTYLE_UNDERLINE));
}
CHECK(0 == ncdirect_stop(nc_));
// make sure that we can pass undefined flags and still create the ncdirect
SUBCASE("FutureFlags") {
nc_ = ncdirect_init(NULL, stdout, ~0ULL);
REQUIRE(nullptr != nc_);
CHECK(0 == ncdirect_stop(nc_));
}
2020-02-05 09:08:42 +00:00
}