mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
25 lines
422 B
ObjectPascal
25 lines
422 B
ObjectPascal
program teststompclient;
|
|
|
|
{$APPTYPE CONSOLE}
|
|
|
|
uses
|
|
StompTypes in 'StompTypes.pas',
|
|
StompClient in 'StompClient.pas',
|
|
MainU in 'MainU.pas',
|
|
SysUtils,
|
|
StopWatch in 'StopWatch.pas';
|
|
|
|
begin
|
|
try
|
|
// Main;
|
|
MainWithTransaction;
|
|
// Test_Unicode_Chars; //Non passa
|
|
Writeln('DONE');
|
|
except
|
|
on E: Exception do
|
|
Writeln(E.Classname, ': ', E.Message);
|
|
end;
|
|
readln;
|
|
end.
|
|
|