Start work on phonebook tool.

This commit is contained in:
2023-10-10 06:02:21 -07:00
parent cc17abea53
commit a6d7b948d4
10 changed files with 283 additions and 54 deletions

12
Test.cc
View File

@@ -2,6 +2,7 @@
// Created by kyle on 2023-10-09.
//
#include "Exceptions.h"
#include "Test.h"
@@ -28,15 +29,4 @@ TestAssert(bool condition, std::string message = "Assertion failed.")
}
AssertionFailed::AssertionFailed(std::string message) : msg(message)
{
}
char *
AssertionFailed::what()
{
return const_cast<char *>(this->msg.c_str());
}
} // namespace klib