Joe Hershberger | 421f86f | 2015-05-20 14:27:36 -0500 | [diff] [blame] | 1 | /* |
2 | * (C) Copyright 2015 | ||||
3 | * Joe Hershberger, National Instruments, joe.hershberger@ni.com | ||||
4 | * | ||||
5 | * SPDX-License-Identifier: GPL-2.0 | ||||
6 | */ | ||||
7 | |||||
8 | #ifndef __TEST_ENV_H__ | ||||
9 | #define __TEST_ENV_H__ | ||||
10 | |||||
11 | #include <test/test.h> | ||||
12 | |||||
13 | /* Declare a new environment test */ | ||||
14 | #define ENV_TEST(_name, _flags) UNIT_TEST(_name, _flags, env_test) | ||||
15 | |||||
16 | #endif /* __TEST_ENV_H__ */ |