Heinrich Schuchardt | 2dd0111 | 2019-01-30 07:53:31 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
2 | /* | ||||
3 | * Copyright (c) 2019 Heinrich Schuchardt <xypron.glpk@gmx.de> | ||||
4 | */ | ||||
5 | |||||
6 | #ifndef __TEST_LIB_H__ | ||||
7 | #define __TEST_LIB_H__ | ||||
8 | |||||
9 | #include <test/test.h> | ||||
10 | |||||
11 | /* Declare a new library function test */ | ||||
12 | #define LIB_TEST(_name, _flags) UNIT_TEST(_name, _flags, lib_test) | ||||
13 | |||||
14 | #endif /* __TEST_LIB_H__ */ |