We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The TestCase attribute allows you to pass values to a test function.
It supports a name, a values and an optional separator parameter. By default the separator is ','.
','
Each value is coerced from a string to the type the test method expects. See Utils.pas TValueHelper for conversion extensions.
TValueHelper
[Test] [TestCase('Case 1','1,2')] [TestCase('Case 2','3,4')] [TestCase('Case 3','5;6', ';')] procedure RunMeMoreThanOnce(param1 : integer; param2 : integer);