mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
28 lines
417 B
ObjectPascal
28 lines
417 B
ObjectPascal
|
program teststompclient;
|
||
|
|
||
|
{$MODE Delphi}
|
||
|
|
||
|
uses
|
||
|
|
||
|
{$IFDEF UNIX}
|
||
|
cthreads,
|
||
|
{$ENDIF}
|
||
|
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.
|