/
githubmirror
/
libsmbios
Обзор
Документация
Войти
/
githubmirror
/
libsmbios
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/cppunit/testC_smi.h
72 строки
2 KB
Michael E Brown
implement linux smi calls, implement more unit tests for smi.
14 окт 2008, 05:43
14 окт 2008, 05:43
4f2ba33
Код
Авторство
О чём код?
// vim:expandtab:autoindent:tabstop=4:shiftwidth=4:filetype=c: /* * Copyright (C) 2005 Dell Inc. * by Michael Brown <Michael_E_Brown@dell.com> * Licensed under the Open Software License version 2.1 * * Alternatively, you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation; either version 2 of the License, * or (at your option) any later version. * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. */ #ifndef _TESTCSMI_H #define _TESTCSMI_H #include "smbios_c/compat.h" #include <cppunit/extensions/HelperMacros.h> #include <typeinfo> #include <string> extern int global_argc; extern char ** global_argv; class testCsmi : public CppUnit::TestFixture { protected: virtual std::string getWritableDirectory() { //return DEFAULT_TEST_DIR; return global_argv[1]; }; virtual std::string getTestName() { //return TEST_DIR; return global_argv[2]; } virtual std::string getTestDirectory() { //return DEFAULT_TEST_DIR; return global_argv[1]; }; public: virtual void setUp(); virtual void tearDown(); // base smbios test void testSmiConstruct(); void testSmiBuffer(); void testLinuxSmi(); // make sure to put this at the end... CPPUNIT_TEST_SUITE (testCsmi); CPPUNIT_TEST (testSmiConstruct); CPPUNIT_TEST (testSmiBuffer); CPPUNIT_TEST (testLinuxSmi); CPPUNIT_TEST_SUITE_END (); }; #endif