delphimvcframework/test/teststompclient.dpr
daniele.teti 4e6dffa238 + some change to the speed test
+ some formatting
+ some refactoring
2010-04-13 22:25:14 +00:00

23 lines
400 B
ObjectPascal

program teststompclient;
{$APPTYPE CONSOLE}
uses
MainU in 'MainU.pas',
SysUtils,
StompClient in '..\StompClient.pas',
StompTypes in '..\StompTypes.pas';
begin
try
Main;
MainWithTransaction;
// Test_Unicode_Chars; //Non passa
Writeln('ALL TESTS OK');
except
on E: Exception do
Writeln(E.Classname, ': ', E.message);
end;
readln;
end.