notcurses/tests/main.h

16 lines
260 B
C
Raw Normal View History

2019-11-17 05:04:41 -05:00
#ifndef NOTCURSES_TEST_MAIN
#define NOTCURSES_TEST_MAIN
#include <gtest/gtest.h>
#include <notcurses.h>
#include <curses.h>
2019-12-15 21:33:26 -05:00
#include "internal.h"
2019-11-17 05:04:41 -05:00
2019-11-18 20:57:33 -05:00
// GTEST_SKIP only came along in GoogleTest 1.9
#ifndef GTEST_SKIP
#define GTEST_SKIP() return;
#endif
2019-11-17 05:04:41 -05:00
#endif