1 Commits

Author SHA1 Message Date
babf4fead2 Add missing newline 2024-08-21 19:28:56 -04:00
2 changed files with 1 additions and 1 deletions

View File

@@ -7,7 +7,6 @@
// TODO: Provide introspection insofar as which assertion check failed.
// TODO: Provide alternate checks (google test has specific assertations for handling floats, for example) (Are these actually necessary??)
// TODO: Implement log-file-specification-capability in jlog so we can log to test_results.txt specifically.
// TODO: Provide benchmarking on test running-time
#include <jtest/Unit.hpp>

View File

@@ -112,6 +112,7 @@ namespace jtest
os << std::format("Results: {}/{} tests ran, {}/{} passed, {}/{} failed.", tests_ran, tests_total, tests_passed, tests_ran, tests_failed, tests_ran);
os << std::format(" Report Card: {:.0f}% ", health);
os << jlog::token(state, "[]", stateColor);
os << "\n";