2019-11-17 05:04:41 -05:00
|
|
|
#ifndef NOTCURSES_TEST_MAIN
|
|
|
|
#define NOTCURSES_TEST_MAIN
|
|
|
|
|
2020-01-15 12:22:10 -05:00
|
|
|
#include <unistd.h>
|
2020-02-18 12:36:16 -05:00
|
|
|
#include "version.h"
|
2020-10-10 20:33:23 -04:00
|
|
|
#include "builddef.h"
|
2020-05-20 18:36:25 -04:00
|
|
|
#include <doctest/doctest.h>
|
2020-02-18 12:36:16 -05:00
|
|
|
#include <notcurses/notcurses.h>
|
2020-05-20 18:36:25 -04:00
|
|
|
#include <ncpp/NotCurses.hh>
|
2020-05-22 03:31:03 -04:00
|
|
|
#include <ncpp/_exceptions.hh>
|
2020-05-20 18:36:25 -04:00
|
|
|
#include "internal.h"
|
2019-12-27 17:43:24 -05:00
|
|
|
|
2020-05-11 04:57:20 -04:00
|
|
|
auto find_data(const char* datum) -> char*;
|
2020-06-15 23:52:11 -04:00
|
|
|
auto testing_notcurses() -> struct notcurses*;
|
2020-08-28 12:10:14 -04:00
|
|
|
auto ncreel_validate(const ncreel* n) -> bool;
|
2019-11-17 05:04:41 -05:00
|
|
|
|
|
|
|
#endif
|