/
thomas-king
/
Raze
Обзор
Документация
Войти
/
thomas-king
/
Raze
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
lib/UnitTests/Assertion.cpp
26 строк
495 B
Ace Rodstin
Update tests
23 ноя 2023, 13:35
23 ноя 2023, 13:35
24b75eb
Код
Авторство
О чём код?
// // Assertion.cpp // UnitTests // // Created by Ace Rodstin on 11/27/23. // Updated by Ace Rodstin on 11/27/23. // // Copyright (C) Ace Rodstin 2023. All rights reserved. // #include "UnitTests/Assertion.h" using namespace unit_tests; Assertion::Assertion(bool result, string errorMessage): result { result }, errorMessage { errorMessage } {} bool Assertion::getResult() const { return result; } string Assertion::getErrorMessage() const { return errorMessage; }