In what order are Ant target's "if" and "depends" evaluated?

Viewed 17127

That is, will calling the following target when testSetupDone evaluates to false, execute the targets in dependency chain?

<target name="-runTestsIfTestSetupDone" if="testSetupDone" depends="-runTests" />
2 Answers
Related