ftlibrary-test.cpp
来自「ftgl-2.1.2 夸平台的opengl显示字体」· C++ 代码 · 共 52 行
CPP
52 行
#include <cppunit/extensions/HelperMacros.h>#include <cppunit/TestCaller.h>#include <cppunit/TestCase.h>#include <cppunit/TestSuite.h>#include "FTLibrary.h"class FTLibraryTest : public CppUnit::TestCase{ CPPUNIT_TEST_SUITE( FTLibraryTest); CPPUNIT_TEST( testConstructor); CPPUNIT_TEST( testError); CPPUNIT_TEST_SUITE_END(); public: FTLibraryTest() : CppUnit::TestCase( "FTLibrary Test") {} FTLibraryTest( const std::string& name) : CppUnit::TestCase(name) {} void testConstructor() { const FTLibrary& libraryOne = FTLibrary::Instance(); const FTLibrary& libraryTwo = FTLibrary::Instance(); CPPUNIT_ASSERT( &libraryOne == &libraryTwo); CPPUNIT_ASSERT( &libraryOne == &FTLibrary::Instance()); } void testError() { const FTLibrary& library = FTLibrary::Instance(); CPPUNIT_ASSERT( library.Error() == 0); } void setUp() {} void tearDown() {} private: };CPPUNIT_TEST_SUITE_REGISTRATION( FTLibraryTest);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?