Hi all,
I'm wondering whether is it possible perform this using csUnit.
e.g.
[SetUp]
public void setUp() {
filePath = Directory.GetFiles(basePath, "*_ND*");
.....
}
[Test]
public void PerformTextX()
{
Assert.True(......);
}
Is it possible to dynamically generate the PerformTextX so i don't
have to copy and paste 100s' or more (dependig on the number of files
in the folder) of the same function?
Or should I just use a single PerformTest and perform a loop
inside to perform all the required checks?
Best Regards,
Boon Hui