notcurses/tests/main.h

15 lines
238 B
C
Raw Normal View History

2019-11-17 10:04:41 +00:00
#ifndef NOTCURSES_TEST_MAIN
#define NOTCURSES_TEST_MAIN
#include <gtest/gtest.h>
#include <notcurses.h>
#include <curses.h>
2019-11-17 10:04:41 +00:00
2019-11-19 01:57:33 +00:00
// GTEST_SKIP only came along in GoogleTest 1.9
#ifndef GTEST_SKIP
#define GTEST_SKIP() return;
#endif
2019-11-17 10:04:41 +00:00
#endif