bemenu/test/bmMenuNew.c

24 lines
490 B
C
Raw Normal View History

2014-03-28 20:00:23 +00:00
#include <stdlib.h>
#include <bemenu.h>
#include <assert.h>
int main(int argc, char **argv)
{
(void)argc, (void)argv;
// TEST: Instance bmMenu with all possible draw modes.
{
bmDrawMode i;
for (i = 0; i < BM_DRAW_MODE_LAST; ++i) {
bmMenu *menu = bmMenuNew(BM_DRAW_MODE_NONE);
assert(menu != NULL);
bmMenuRender(menu);
bmMenuFree(menu);
}
}
return EXIT_SUCCESS;
}
/* vim: set ts=8 sw=4 tw=0 :*/