| 8 | #include "Types.hpp" |
| 9 | |
| 10 | static std::string GetResourceFilePath(const std::string& filename) |
| 11 | { |
| 12 | std::string testResources = TEST_RESOURCE_DIR; |
| 13 | if (0 == testResources.size()) |
| 14 | { |
| 15 | throw "Invalid test resources directory provided"; |
| 16 | } |
| 17 | else |
| 18 | { |
| 19 | if(testResources.back() != '/') |
| 20 | { |
| 21 | return testResources + "/" + filename; |
| 22 | } |
| 23 | else |
| 24 | { |
| 25 | return testResources + filename; |
| 26 | } |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | TEST_CASE("Test Network Execution SSD_MOBILE") |
| 31 | { |