source upload

This commit is contained in:
Razor12911
2022-01-17 22:16:47 +02:00
parent 12936d065b
commit 098e8c48de
1778 changed files with 1206749 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
program TestAll;
uses
{$I SynDprUses.inc} // cross-platform, cross-compiler (includes FastMM4)
SynCommons, // shared types for the whole framework
SynLog, // logging
SynTests, // unitary tests
mORMot, // ORM + SOA
SynSQLite3Static, // statically linked SQLite3 engine
mORMotSQLite3, // use SQlite3 as ORM core
// domain
DomConferenceTypes in '..\dom\DomConferenceTypes.pas',
DomConferenceInterfaces in '..\dom\DomConferenceInterfaces.pas',
DomConferenceDepend in '..\dom\DomConferenceDepend.pas',
DomConferenceServices in '..\dom\DomConferenceServices.pas',
DomConferenceTest in '..\dom\DomConferenceTest.pas',
// infrastructure
InfraConferenceRepository in '..\infra\InfraConferenceRepository.pas',
// servers
ServBookMain in '..\serv\ServBookMain.pas',
ServBookTest in '..\serv\ServBookTest.pas',
// tests
TestAllMain in 'TestAllMain.pas';
begin
TSynLogTestLog := TSQLLog; // share the same log file with the whole mORMot
TTestEKON.RunAsConsole('EKON Automated Tests', LOG_VERBOSE);
end.