lib.h 319 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2019 Heinrich Schuchardt <xypron.glpk@gmx.de>
  4. */
  5. #ifndef __TEST_LIB_H__
  6. #define __TEST_LIB_H__
  7. #include <test/test.h>
  8. /* Declare a new library function test */
  9. #define LIB_TEST(_name, _flags) UNIT_TEST(_name, _flags, lib_test)
  10. #endif /* __TEST_LIB_H__ */