blob: c661cde75a3925f300b9f03b9aa6e7387577c302 [file] [log] [blame]
Heinrich Schuchardt395041b2020-02-26 21:48:18 +01001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Copyright (c) 2020, Heinrich Schuchardt <xypron.glpk@gmx.de>
4 *
5 * Tests for logging functions
6 */
7
8#ifndef __TEST_LOG_H__
9#define __TEST_LOG_H__
10
11#include <test/test.h>
12
13/* Declare a new logging test */
14#define LOG_TEST(_name) UNIT_TEST(_name, 0, log_test)
15
16#endif /* __TEST_LOG_H__ */