mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-20 03:25:47 +00:00
notcurses unit tests: ncplane_new->ncplane_create #1115
This commit is contained in:
parent
ff999ca268
commit
4b016ce4d2
@ -71,8 +71,17 @@ TEST_CASE("NotcursesBase") {
|
|||||||
for(int y = 0 ; y < maxy ; ++y){
|
for(int y = 0 ; y < maxy ; ++y){
|
||||||
for(int x = 0 ; x < maxx ; ++x){
|
for(int x = 0 ; x < maxx ; ++x){
|
||||||
const auto idx = y * maxx + x;
|
const auto idx = y * maxx + x;
|
||||||
planes[idx] = ncplane_new(notcurses_stdplane(nc_), 1, 1, y, x,
|
struct ncplane_options nopts = {
|
||||||
&planesecrets[idx], nullptr);
|
.y = y,
|
||||||
|
.horiz = { .x = x, },
|
||||||
|
.rows = 1,
|
||||||
|
.cols = 1,
|
||||||
|
.userptr = &planesecrets[idx],
|
||||||
|
.name = nullptr,
|
||||||
|
.resizecb = nullptr,
|
||||||
|
.flags = 0,
|
||||||
|
};
|
||||||
|
planes[idx] = ncplane_create(notcurses_stdplane(nc_), &nopts);
|
||||||
REQUIRE(planes[idx]);
|
REQUIRE(planes[idx]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user