📄 blastest.h
字号:
#ifndef BLASTEST_H_#define BLASTEST_H_#include <cppunit/extensions/HelperMacros.h>#include "libeblearn.h"//! Test class for Blas classclass BlasTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE(BlasTest); CPPUNIT_TEST(test_idx_min_max); CPPUNIT_TEST(test_idx_sums); CPPUNIT_TEST(test_idx_sortdown); CPPUNIT_TEST(test_idx_sqrdist); CPPUNIT_TEST(test_idx_exp); CPPUNIT_TEST(test_idx_m2oversample); CPPUNIT_TEST(test_idx_m2squdotm1); CPPUNIT_TEST(test_idx_m2extm2acc); CPPUNIT_TEST(test_idx_copy); CPPUNIT_TEST(test_idx_copy2); CPPUNIT_TEST(test_idx_abs); CPPUNIT_TEST(test_huge_vec); 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_idx_min_max(); void test_idx_sums(); void test_idx_sortdown(); void test_idx_sqrdist(); void test_idx_exp(); void test_idx_m2oversample(); void test_idx_m2squdotm1(); void test_idx_m2extm2acc(); void test_idx_copy(); void test_idx_copy2(); void test_idx_abs(); void test_huge_vec();};#endif /* BLASTEST_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -