diff options
author | hop311 <hop3114@gmail.com> | 2023-10-28 11:39:08 +0200 |
---|---|---|
committer | hop311 <hop3114@gmail.com> | 2023-10-29 20:42:47 +0100 |
commit | 164264b047921dbe1567d2af183e1cffb200a8cb (patch) | |
tree | 21c3c81f65ac3259db4808ebe9fd32a94ca993af /src/openvic-simulation/testing/Testing.cpp | |
parent | d8ec90f07342876e9331819bd3cc372050f78248 (diff) |
Astyle formatting (with manual cleanup)
Diffstat (limited to 'src/openvic-simulation/testing/Testing.cpp')
-rw-r--r-- | src/openvic-simulation/testing/Testing.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/openvic-simulation/testing/Testing.cpp b/src/openvic-simulation/testing/Testing.cpp index 42df80c..883c4f6 100644 --- a/src/openvic-simulation/testing/Testing.cpp +++ b/src/openvic-simulation/testing/Testing.cpp @@ -54,7 +54,7 @@ void Testing::report_results() { report_result("Failed Requirements", test_results, failed_reqs); report_result("Untested Requirements", test_results, untested_reqs); - test_results << std::endl<< std::endl; + test_results << std::endl << std::endl; } test_results.close(); } @@ -65,6 +65,8 @@ void Testing::report_result(std::string req_title, std::ofstream& outfile, std:: for (auto req : reqs) { outfile << req->get_id() << " "; } - if (reqs.size() < 1) outfile << "None"; + if (reqs.size() < 1) { + outfile << "None"; + } outfile << std::endl << std::endl; } |