This commit is contained in:
Michaël Van Canneyt 2024-11-09 09:58:12 +01:00
parent fe6dd84d01
commit d486463bc1

View File

@ -52,6 +52,7 @@ Type
procedure TestMakeGenericWideChar;
procedure TestFromOrdinal;
Procedure TestTryCastUnicodeString;
end;
{ TTestValueArray }
@ -1533,6 +1534,17 @@ begin
CheckException({$ifdef fpc}@{$endif}MakeFromOrdinalString, EInvalidCast);
end;
procedure TTestValueSimple.TestTryCastUnicodeString;
var
S: string;
V, V2: TValue;
begin
S := 'str';
V := S;
CheckTrue(V.TryCast(TypeInfo(UnicodeString), V2),'Cast OK');
end;
{ TTestValueArray }