xtool/contrib/mORMot/SQLite3/Samples/25 - JSON performance/JSONPerfTests.dpr

21 lines
360 B
ObjectPascal

/// benchmarking of JSON process: mORMot vs SuperObject/dwsJSON/DBXJSON
program JSONPerfTests;
{$APPTYPE CONSOLE}
uses
{$I SynDprUses.inc}
SynCommons,
SynCrossPlatformJSON in '..\..\..\CrossPlatform\SynCrossPlatformJSON.pas',
JSONPerfTestCases;
begin
with TTestJSONBenchmarking.Create do
try
Run;
readln;
finally
Free;
end;
end.