William A. Kennington III | e335ed9 | 2018-01-23 22:13:44 -0800 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include <string> | ||||
4 | |||||
5 | #include <gtest/gtest.h> | ||||
6 | |||||
7 | namespace phosphor | ||||
8 | { | ||||
9 | namespace watchdog | ||||
10 | { | ||||
11 | |||||
12 | class ArgumentTest : public testing::Test | ||||
13 | { | ||||
14 | protected: | ||||
15 | void SetUp() override; | ||||
16 | |||||
17 | std::string arg0; | ||||
18 | }; | ||||
19 | |||||
20 | } // namespace watchdog | ||||
21 | } // namespace phosphor |