mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
34 lines
463 B
ObjectPascal
34 lines
463 B
ObjectPascal
unit TestStompClientU;
|
|
|
|
interface
|
|
|
|
uses
|
|
TestFramework;
|
|
|
|
type
|
|
TTestStompClient = class(TTestCase)
|
|
published
|
|
procedure TestAssertTrue;
|
|
procedure TestAssertFalse;
|
|
end;
|
|
|
|
implementation
|
|
|
|
{ TTestStompClient }
|
|
|
|
procedure TTestStompClient.TestAssertFalse;
|
|
begin
|
|
CheckTrue(false);
|
|
end;
|
|
|
|
procedure TTestStompClient.TestAssertTrue;
|
|
begin
|
|
CheckTrue(true);
|
|
end;
|
|
|
|
initialization
|
|
|
|
RegisterTest(TTestStompClient.Suite);
|
|
|
|
end.
|