| 40 | } |
| 41 | |
| 42 | static std::string test_output_profile_path(const std::string& base_name) { |
| 43 | std::stringstream file_name; |
| 44 | file_name << base_name << "_" << std::rand() << ".profile"; |
| 45 | return get_temp_test_path(file_name.str()); |
| 46 | } |
| 47 | |
| 48 | TEST_CASE( "empty constructor", "[libopenshot][profile]" ) |
| 49 | { |
no test coverage detected