source: branches/2.20_branch/unittests/HelpTopicTests.pas@ 471

Last change on this file since 471 was 224, checked in by RBRi, 18 years ago

% refactoring

  • Property svn:eol-style set to native
File size: 587 bytes
Line 
1Unit HelpTopicTests;
2
3Interface
4
5uses
6 Classes,
7 TestAssert
8 // HelpTopic
9 ;
10
11 FUNCTION getHelpTopicTests : TList;
12
13Implementation
14
15 PROCEDURE testTranslateIPFEscapeCode;
16 VAR
17 tmpResult : String;
18 //tmpTopic : TTopic;
19 // tmpFileHandle : HFILE;
20 BEGIN
21 // tmpTopic := TTopic.Create();
22 // tmpResult := TTopic.Create.TranslateIPFEscapeCode();
23 tmpResult := '';
24 assertEqualsString('testGetBeginLink', '', tmpResult);
25 END;
26
27
28 FUNCTION getHelpTopicTests : TList;
29 BEGIN
30 result := TList.Create;
31
32 result.add(@testTranslateIPFEscapeCode);
33 END;
34
35END.
Note: See TracBrowser for help on using the repository browser.