testspidx.cpp

来自「Gaussian Mixture Algorithm」· C++ 代码 · 共 32 行

CPP
32
字号
/* * testspidx.cpp * *      Author: cyril Poulet */#include <fstream>#include <iostream>#include <cppunit/ui/text/TestRunner.h>#include <cppunit/TestResult.h>#include <cppunit/BriefTestProgressListener.h>#include "spIdxTest.h"#include "spBlasTest.h"#include "spIdxIOTest.h"using namespace std;int main(){	CppUnit::TextUi::TestRunner runner;	runner.addTest(spIdxTest::suite());	runner.addTest(spBlasTest::suite());	runner.addTest(spIdxIOTest::suite());	CppUnit::BriefTestProgressListener listener;	runner.eventManager().addListener(&listener);	// Run all tests	runner.run();	return 0;}

⌨️ 快捷键说明

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