/
thomas-king
/
Scanner
Обзор
Документация
Войти
/
thomas-king
/
Scanner
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
main
test.cpp
45 строк
1009 B
Ace Rodstin
Replace GoogleTest with UnitTest.
02 ноя 2023, 18:07
02 ноя 2023, 18:07
8350eca
Код
Авторство
О чём код?
// // tests.h // Scanner // // Created by Ace Rodstin on 10/27/23. // Updated by Ace Rodstin on 11/2/23. // // Copyright © 2023 Ace Rodstin. All rights reserved. // #include "Tests/ScanCharacterLiteralTests.h" #include "Tests/ScanDelimeterTests.h" #include "Tests/ScanExpressionTests.h" #include "Tests/ScanFloatLiteralTests.h" #include "Tests/ScanIdentifierTests.h" #include "Tests/ScanIntegerLiteralTests.h" #include "Tests/ScanKeywordTests.h" #include "Tests/ScanOperatorTests.h" #include "Tests/ScanPunctuatorTests.h" #include "Tests/ScanStringLiteralTests.h" #include "Tests/ScannerTests.h" using namespace tests; int main() { vector<TestSuit> tests { ScanCharacterLiteralTests(), ScanDelimeterTests(), ScanExpressionTests(), ScanFloatLiteralTests(), ScanIdentifierTests(), ScanIntegerLiteralTests(), ScanKeywordTests(), ScanOperatorTests(), ScanPunctuatorTests(), ScanStringLiteralTests(), ScannerTests(), }; for (auto test : tests) { test.run(); } return 0; }