gcontini
2020-11-17 f7f0ba4206bfc30d4f9727a0e2448ee43cba6aad
test/library/os/dmi_info_test.cpp
@@ -5,7 +5,6 @@
#include <boost/test/unit_test.hpp>
#include "../../../src/library/os/dmi_info.hpp"
namespace license {
namespace test {
using namespace std;
@@ -13,10 +12,9 @@
BOOST_AUTO_TEST_CASE(dmi_info) {
   os::DmiInfo dmiInfo;
   BOOST_CHECK_MESSAGE(dmiInfo.bios_vendor().size()>0, "Bios vendor OK");
   BOOST_CHECK_MESSAGE(dmiInfo.bios_description().size() > 0, "Bios description OK");
   BOOST_CHECK_MESSAGE(dmiInfo.sys_vendor().size() > 0, "Sys vendor OK");
   BOOST_CHECK_MESSAGE(dmiInfo.bios_vendor().size() > 0, "Bios vendor length >0");
   BOOST_CHECK_MESSAGE(dmiInfo.bios_description().size() > 0, "Bios description length >0");
   BOOST_CHECK_MESSAGE(dmiInfo.sys_vendor().size() > 0, "Sys vendor length >0");
}
}  // namespace test