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__ */ 15