blob: 46e8762d20fabfae1e7ad0ff5cf8491294ce95ca [file] [log] [blame]
William A. Kennington IIIe335ed92018-01-23 22:13:44 -08001#pragma once
2
3#include <string>
4
5#include <gtest/gtest.h>
6
7namespace phosphor
8{
9namespace watchdog
10{
11
12class ArgumentTest : public testing::Test
13{
Patrick Venture8f6c5152018-09-11 17:45:33 -070014 protected:
15 void SetUp() override;
William A. Kennington IIIe335ed92018-01-23 22:13:44 -080016
Patrick Venture8f6c5152018-09-11 17:45:33 -070017 std::string arg0;
William A. Kennington IIIe335ed92018-01-23 22:13:44 -080018};
19
Patrick Venture8f6c5152018-09-11 17:45:33 -070020} // namespace watchdog
21} // namespace phosphor