We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Let's call it rather a question than an issue – not sure if it is intended or not. I have:
// file ATestCase class ATestCase extends ImpTestCase { setUp() { some code } } class BTestCase extends ATestCase { testSomething() { some code } }
when I run impt test with ATestCase::testSomething, the order of execution is:
ATestCase::testSomething
I am confused why ATestCase::setUp is called, don't really want it – and would think it is incorrect (especially at that point in time).
The text was updated successfully, but these errors were encountered:
...ok, so if I run ATestCase:BTestCase::testSomething, the result is what I expect:
ATestCase:BTestCase::testSomething
also just tested: it is not a problem that the file and first class have the same name.
Sorry, something went wrong.
No branches or pull requests
Let's call it rather a question than an issue – not sure if it is intended or not. I have:
when I run impt test with
ATestCase::testSomething
, the order of execution is:I am confused why ATestCase::setUp is called, don't really want it – and would think it is incorrect (especially at that point in time).
The text was updated successfully, but these errors were encountered: