blob: 0cc879661bed8b86fb0ecbc8cc68560b08ed0126 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* tests/tests.h
* (c) 2021 Jonas Gunz <himself@jonasgunz.de>
* License: MIT
*/
#pragma once
#include <check.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
TCase* test_dns(void);
TCase* test_tree(void);
TCase* test_zonefile(void);
TCase* test_record(void);
TCase* test_database(void);
TCase* test_list(void);
|