mirror of
https://github.com/opencv/opencv.git
synced 2024-12-15 01:39:10 +08:00
8 lines
155 B
C++
8 lines
155 B
C++
|
#include <gtest/gtest.h>
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
/* return 0;*/
|
||
|
::testing::InitGoogleTest(&argc, argv);
|
||
|
return RUN_ALL_TESTS();
|
||
|
}
|