libsuperderpy/test/tests.h

39 lines
1.1 KiB
C
Raw Normal View History

2019-04-03 02:59:48 +02:00
/*! \file tests.h
* \brief Headers for test files.
*/
/*
* Copyright (c) Sebastian Krzyszkowiak <dos@dosowisko.net>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBSUPERDERPY_TESTS_H
#define LIBSUPERDERPY_TESTS_H
#include <setjmp.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdint.h>
#include <cmocka.h>
#include "internal.h"
int engine_setup(void** state);
int engine_teardown(void** state);
int test_timeline(void);
2019-10-06 08:02:04 +02:00
int test_character(void);
2019-04-03 02:59:48 +02:00
#endif