mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-09 17:19:03 -04:00
Throw up an ncplot unit test
This commit is contained in:
parent
5aedb3491d
commit
e87fbb3003
33
tests/plot.cpp
Normal file
33
tests/plot.cpp
Normal file
@ -0,0 +1,33 @@
|
||||
#include "main.h"
|
||||
#include <cstring>
|
||||
#include <iostream>
|
||||
|
||||
TEST_CASE("Plot") {
|
||||
if(!enforce_utf8()){
|
||||
return;
|
||||
}
|
||||
if(getenv("TERM") == nullptr){
|
||||
return;
|
||||
}
|
||||
notcurses_options nopts{};
|
||||
nopts.inhibit_alternate_screen = true;
|
||||
nopts.suppress_banner = true;
|
||||
FILE* outfp_ = fopen("/dev/tty", "wb");
|
||||
REQUIRE(outfp_);
|
||||
struct notcurses* nc_ = notcurses_init(&nopts, outfp_);
|
||||
REQUIRE(nc_);
|
||||
struct ncplane* n_ = notcurses_stdplane(nc_);
|
||||
REQUIRE(n_);
|
||||
REQUIRE(0 == ncplane_cursor_move_yx(n_, 0, 0));
|
||||
|
||||
SUBCASE("SimplePlot"){
|
||||
ncplot_options popts{};
|
||||
ncplot* p = ncplot_create(n_, &popts);
|
||||
REQUIRE(p);
|
||||
CHECK(n_ == ncplot_plane(p));
|
||||
ncplot_destroy(p);
|
||||
}
|
||||
|
||||
CHECK(0 == notcurses_stop(nc_));
|
||||
CHECK(0 == fclose(outfp_));
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user