fisipjm 1 Posted Wednesday at 01:32 PM (edited) Hi, after upgrading my Project to D13 many of my tests Fail here is one example for one test case: procedure CheckListState; var ResultArray: Tarray<String>; begin ResultArray:= GetResults; Assert.AreNotEqual(0, length(ResultArray), 'List is Active but has no Values'); // <--- Error here //If I write like this it works. But the response of length should be integer anyway???? //Assert.AreNotEqual(0, Integer(length(ResultArray)), 'List is Active but has no Values'); end; Any suggestions on that? Is DunityX / Testinsight released for D13? Edited Wednesday at 01:56 PM by fisipjm Share this post Link to post
Uwe Raabe 2231 Posted Wednesday at 02:14 PM I cannot reproduce with the code given using DUnitX.Assert from D13. Share this post Link to post