xref: /openbmc/u-boot/include/test/env.h (revision 78a88f79)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * (C) Copyright 2015
4  * Joe Hershberger, National Instruments, joe.hershberger@ni.com
5  */
6 
7 #ifndef __TEST_ENV_H__
8 #define __TEST_ENV_H__
9 
10 #include <test/test.h>
11 
12 /* Declare a new environment test */
13 #define ENV_TEST(_name, _flags)	UNIT_TEST(_name, _flags, env_test)
14 
15 #endif /* __TEST_ENV_H__ */
16