idxiotest.h

来自「Gaussian Mixture Algorithm」· C头文件 代码 · 共 35 行

H
35
字号
#ifndef IDXIOTEST_H_#define IDXIOTEST_H_#include <cppunit/extensions/HelperMacros.h>#include "libeblearn.h"//! Test class for IdxIO classclass IdxIOTest : public CppUnit::TestFixture  {  CPPUNIT_TEST_SUITE(IdxIOTest);  CPPUNIT_TEST(test_save_load_matrix_ubyte);  CPPUNIT_TEST(test_save_load_matrix_int);  CPPUNIT_TEST(test_save_load_matrix_float);  CPPUNIT_TEST(test_save_load_matrix_double);  CPPUNIT_TEST(test_save_load_matrix_long);  CPPUNIT_TEST_SUITE_END();private:  // member variablespublic:  //! This function is called before each test function is called.  void setUp();  //! This function is called after each test function is called.  void tearDown();  // Test functions  void test_save_load_matrix_ubyte();  void test_save_load_matrix_int();  void test_save_load_matrix_float();  void test_save_load_matrix_double();  void test_save_load_matrix_long();};#endif /* IDXIOTEST_H_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?