libsuperderpy/test/tests.h

43 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 file is part of libsuperderpy.
*
* libsuperderpy is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation; either version 3 of the License, or
2019-04-03 02:59:48 +02:00
* (at your option) any later version.
*
* libsuperderpy is distributed in the hope that it will be useful,
2019-04-03 02:59:48 +02:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with libsuperderpy. If not, see <http://www.gnu.org/licenses/>.
2019-04-03 02:59:48 +02:00
*
* Also, ponies.
2019-04-03 02:59:48 +02:00
*/
#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