Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#define GTEST 1
#include <iostream>
#include "ds.DynamicBitset.test.h"
int runAllTests(int* argc, char** argv){
int testResult = 0;
#if GTEST
::testing::InitGoogleTest(argc, argv);
testResult = RUN_ALL_TESTS();
#endif
return testResult;
}
int main(int argc, char** argv){
int testResult = 0;
#if GTEST
testResult = runAllTests(&argc, argv);
#endif // GTEST
return testResult;
}