Skip to content

Commit 108428d

Browse files
Improve wording for the messages that get displayed when the tests pass or fail
1 parent b76e4d2 commit 108428d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/automated-tests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ int main()
1010
CppSafeIO::clearConsole(); //not executing so that the building and testing log doesn't get erased in case of running ctest -V
1111

1212
std::cout << "Automated tests passed.\n"
13-
<< "You can include the cppsafeio.h file, and use the CppSafeIO namespace.\n"
13+
<< "You can include the cppsafeio.h header file and use the CppSafeIO namespace.\n"
1414
<< "You can try to run CppSafeIO-Tests executable to test the input functions.\n";
1515
}
1616
catch (const std::exception& exception)
1717
{
18-
std::cerr << "CppSafeIO library's tests failed\n"
18+
std::cerr << "CppSafeIO library's automated tests failed\n"
1919
<< "Error: " << exception.what() << '\n';
2020

2121
return 1;

0 commit comments

Comments
 (0)