/
thomas-king
/
ArgumentsParser
Обзор
Документация
Войти
/
thomas-king
/
ArgumentsParser
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
develop
lib/UnitTests/Models/TestCase.cpp
28 строк
457 B
Ace Rodstin
Fix tests
20 ноя 2023, 21:08
20 ноя 2023, 21:08
9e5189b
Код
Авторство
О чём код?
// // TestCase.cpp // UnitTests // // Created by Ace Rodstin on 11/1/23. // Updated by Ace Rodstin on 11/20/23. // // Copyright (C) 2023 Ace Rodstin. All rights reserved. // #include "UnitTests/Models/TestCase.h" using namespace unit_tests; TestCase::TestCase(Id id, Test test): id { id }, test { test } {} bool TestCase::isSuccess = false; TestCase::Id TestCase::getId() const { return id; } void TestCase::run() { test(); }