joque
task orchestration library
junit.hpp
Go to the documentation of this file.
1 #pragma once
23 
24 #include "records.hpp"
25 
26 #include <filesystem>
27 #include <ostream>
28 #include <string>
29 
30 namespace joque
31 {
32 
40  const std::filesystem::path& p,
41  const std::string& ts_name,
42  const exec_record& exec_rec );
43 
50  std::ostream& os,
51  const std::string& ts_name,
52  const exec_record& exec_rec );
53 
54 } // namespace joque
MIT License.
Definition: dag.hpp:27
void generate_junit_xml(const std::filesystem::path &p, const std::string &ts_name, const exec_record &exec_rec)
Generates JUnit XML file, expects that execution record represents some form of test execution.
Record of execution of entire task set.
Definition: records.hpp:90