blob: 469e715c4f8a4a700e35c726d96ea5f9c6188047 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* 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);
|