
I have separated my tests in different subfolders.
ROOT
ROOT/sub1
Test1
ROOT/sub2
Test2
Where is stored the information that test 1 is linked to sub1 and test2 to sub 2?
Is there anyway to have this information into the database by modifying :
Insert into test (eventtime, testname, status, reply, testid, testmethod) VALUES ('%DateTime%','%TestName%', '%Status%', '%Reply%', %TestID%, '%TestMethod%')
With something like :
Insert into test (SUBFOLDERSNAME, eventtime, testname, status, reply, testid, testmethod) VALUES ('%subfoldername%','%DateTime%','%TestName%', '%Status%', '%Reply%', %TestID%, '%TestMethod%').
I haven't found anything that would look like a %subfoldername% parameter.
Thank you.