pokorra wrotePlease attach the source code of the test file.
Done - see 1109. I only have renamed the problem to T03_Revaluation because nunit lists and runs the routines in alphabetical order. So I give the tests a number to enforce a test sequence.
And the sources of the test are "clearly arranged" ...
[Test]
public void T03_Revaluation()
{
string[] currencies = new string[2];
currencies[0] = "GBP";
currencies[1] = "YEN";
decimal[] rates = new decimal[2];
rates[0] = 1.234m;
rates[1] = 2.345m;
TRevaluationWebConnector.Revaluate(43, "EUR",
"5300", "3700",currencies, rates);
}
pokorra wroteI think, the output is just delayed.
Ok, there my be a delay, but this is one the half of the problem. In one case the server is not stopped, in one case it is stopped one times and in the third case it is stopped two times.