uses-in + directives tests

This commit is contained in:
SunSerega 2020-06-01 12:03:30 +03:00
parent aff14c5cc7
commit 1a51d2ad6c
5 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1 @@
abc

View file

@ -0,0 +1,8 @@
unit u;
{$resource '1.txt'}
{$reference 'uui3_lib.dll'}
begin
Assert('abc' = System.IO.StreamReader.Create(GetResourceStream('1.txt')).ReadToEnd);
end.

Binary file not shown.

View file

@ -0,0 +1,3 @@
library uui3_lib;
end.

View file

@ -0,0 +1,3 @@
uses u in 'UsesInUnits3\u';
begin end.