16 lines
254 B
C++
Executable File
16 lines
254 B
C++
Executable File
#include <TestCommon.h>
|
|
|
|
void runCommonTests();
|
|
void runTraditionalTests();
|
|
void runModernTests();
|
|
|
|
int main() {
|
|
runCommonTests();
|
|
if (isAtLeastWin8()) {
|
|
runModernTests();
|
|
} else {
|
|
runTraditionalTests();
|
|
}
|
|
return 0;
|
|
}
|