📄 tutility.cpp
字号:
// tutility.cpp
//
#include <iostream.h>
#include <stdio.h>
#include <windows.h>
#include "tutility.h"
//
// CTestUtility实现
void CTestUtility::WaitForNextTest( LPCSTR pszHint )
{
cout << pszHint << endl << endl;
getchar();
}
void CTestUtility::Test()
{
TestTime();
TestTimeSpan();
}
void CTestUtility::TestTime()
{
cout << "Test CAsnBitString *************************************" << endl;
WaitForNextTest( "CAsnBitString has been tested ! " );
}
void CTestUtility::TestTimeSpan()
{
cout << "Test CAsnBitString *************************************" << endl;
WaitForNextTest( "CAsnBitString has been tested ! " );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -