mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
7367790685
+ fixed issue 3
23 lines
399 B
ObjectPascal
23 lines
399 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.
|