Patrick Venture | 609fe98 | 2018-04-17 17:51:56 -0700 | [diff] [blame] | 1 | #include "hwmon.hpp" |
2 | |||||
3 | #include <gmock/gmock.h> | ||||
4 | #include <gtest/gtest.h> | ||||
5 | |||||
6 | TEST(HwmonTest, InvalidType) { | ||||
7 | |||||
8 | hwmon::Attributes attrs; | ||||
9 | EXPECT_FALSE(hwmon::getAttributes("invalid", attrs)); | ||||
10 | |||||
11 | } | ||||
12 |