1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Copyright 2023 Google LLC 4 * Written by Simon Glass <sjg@chromium.org> 5 */ 6 7 #ifndef __TEST_CMD_H__ 8 #define __TEST_CMD_H__ 9 10 #include <test/test.h> 11 12 /* Declare a new command test */ 13 #define CMD_TEST(_name, _flags) UNIT_TEST(_name, _flags, cmd) 14 15 #endif /* __TEST_CMD_H__ */ 16