4842c15240f7b763324e373054347c0a20607b2a
[platform/upstream/opencv.git] / modules / dnn / test / test_main.cpp
1 #include "test_precomp.hpp"
2
3 static const char* extraTestDataPath =
4 #ifdef WINRT
5         NULL;
6 #else
7         getenv("OPENCV_DNN_TEST_DATA_PATH");
8 #endif
9
10 CV_TEST_MAIN("",
11     extraTestDataPath ? (void)cvtest::addDataSearchPath(extraTestDataPath) : (void)0
12 )
13
14 namespace opencv_test
15 {
16
17 using namespace cv;
18 using namespace cv::dnn;
19
20 }