Changeset 151 for trunk/TestCases.pas


Ignore:
Timestamp:
Jun 6, 2023, 11:15:57 AM (12 months ago)
Author:
chronos
Message:
  • Added: New file compare dialog with additional normalize options.
  • Modified: Compare action uses external compare tool.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/TestCases.pas

    r149 r151  
    181181        VCardEnd + VCardLineEnding;
    182182    end;
     183
     184    with TTestCaseLoadSave(AddNew('Merge same cell phone', TTestCaseLoadSave)) do begin
     185      Input := VCardBegin + MacLineEnding +
     186        VCardVersion + MacLineEnding +
     187        'N:Surname;Name' + MacLineEnding +
     188        'FN:Name Surname' + MacLineEnding +
     189        'TEL;CELL:123456789' + MacLineEnding +
     190        VCardEnd + MacLineEnding +
     191
     192        VCardBegin + MacLineEnding +
     193        VCardVersion + MacLineEnding +
     194        'N:Surname2;Name' + MacLineEnding +
     195        'FN:Name Surname2' + MacLineEnding +
     196        'TEL;CELL:123456789' + MacLineEnding +
     197        VCardEnd + MacLineEnding;
     198      Output := VCardBegin + VCardLineEnding +
     199        VCardVersion + VCardLineEnding +
     200        'N:Surname;Name' + VCardLineEnding +
     201        'FN:Name Surname' + VCardLineEnding +
     202        'TEL;CELL:123456789' + MacLineEnding +
     203        VCardEnd + VCardLineEnding;
     204    end;
    183205  end;
    184206end;
Note: See TracChangeset for help on using the changeset viewer.