blob: 1c538c7d5054014024d1db5ed372fc45b56c966f [file] [log] [blame]
Patrick Venture609fe982018-04-17 17:51:56 -07001#include "hwmon.hpp"
2
3#include <gmock/gmock.h>
4#include <gtest/gtest.h>
5
Patrick Venture043d3232018-08-31 10:10:53 -07006TEST(HwmonTest, InvalidType)
7{
Patrick Venture609fe982018-04-17 17:51:56 -07008
Patrick Venture043d3232018-08-31 10:10:53 -07009 hwmon::Attributes attrs;
10 EXPECT_FALSE(hwmon::getAttributes("invalid", attrs));
Patrick Venture609fe982018-04-17 17:51:56 -070011}