TestNG test functions never execute
First a word about my test framework. I have a hierarchy of test classes. There is an abstract base class which does some setup, a child class that does some more setup, and finally an actual test class that does even more setup and finally runs the tests. This configuration works fine when I execute it using ANT. I can develop to my heart's content within IntelliJ 12, but the tests never execute. I can step through the set up phase and all those bits do their duty. But if I let the test application run the next thing that happens is I am in the tear-down methods. The logging facility reports that zero tests ran; zero tests failed; and zero tests were skipped. This is vexing. Not only is there no joy trying to run the tests, but there is no way for me to debug them.
Well, to be honest, there is a way. I can remote debug the tests by running them in ANT and having IntelliJ attach to the process. Sadly, this tells me nothing as to why the IDE is not capable of running the tests as they are. And running remote is just too cumbersome a workflow for me or my associates. Any suggestions or ideas as to what is going down here? Thanks to all.
请先登录再写评论。
Hi Ron,
Could you provide a sample project which illustrates the problem?
Denis
I think a large part of the problem is that this project is not at all simple (e.g., inheritance and polymorphism are not always our friends). But I will try to abstract it down to a usable example. This may take some time. Thanks for the response and interest.
Ok, thanks.
We'll definitely check the sample project when it's available
Denis
Out of curiosity, do your test classes actually contain the word Test in them? So that they're being discovered?
The actual test operations are annotated with Test.