summaryrefslogtreecommitdiffstats
path: root/guththila/tests/test.h
blob: 93bebffdcdc66775d8e0f2ad568a38ab053b9f7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef _GUTHTHILA_TESTS_
#define _GUTHTHILA_TESTS_
#include <check.h>
#include <guththila.h>
#include "guththila_defines.h"

axutil_allocator_t *allocator;
guththila_reader_t *red;
axutil_env_t *env;
guththila_t *parser;

void setup(
    void);
void teardown(
    void);

Suite *guththila_suite(
    void);

Suite *guththila_attribute_suite(
    void);

#endif