DUnitX, how to use result of prior TestFixture in current TestFixture

66 Views Asked by At

I have two TestFixures. One creates Datas, the other works with some of them.

I have no good / elegant Idea how to transfer results from one Fixture to another.

Of course I can use a File, which is created in Create-Test and is read in Work-Test, but this is not realy great.

I tried TTestDataProvider, this looks good, besides, all Test Data (GetCaseParams) wwere created during Startup of the App. The TestParams of Work-Test should be created after Create-Test runs. I did not found a chance, that the Params were creates after the Create-Test.

Any Ideas, how to handle this?

0

There are 0 best solutions below