I\'m using ChromeDriver with Play! framework. I have a UnitTest where ChromeDriver is instantiated and make a get request to my Dyndns url. When the test starts, it opens chrome, makes the request but
Apologies for the longwinded question... In order to test business logic which calls Axis 1.4 web services in my unit tests, I\'m currently using a Spring proxy which allows me to set exceptions and
I\'m working a program which is parsing some files and than process these files. The parser is well tested, but I have to test the processing part too.
I\'m having problems with a java.lang.NoClassDefFoundError when trying to run my JUnit tests from ANT using the runtestsreport task in thefollowing build.xml; I know the other tasks work, it\'s just t
When running unit tests, Gradle can execute multiple tests in parallel without any changes to the tests themselves (i.e. special annotations, test runners, etc.). I\'d like to achieve the same thing w
I am trying to bundle my tests in a TestSuite which will pick up files from a directory and run each one after loading spring context.
I\'m writing tests with JUnit for some methods operating on a test database. I need to reset t开发者_如何学Pythonhe database to the original state after each @Test. I\'m wondering what\'s the best wa
Im not sure how to word what I want to do so I apologise in advance I\'m currently writing unit tests for some legacy code as part of my job. One of these bits of code is a (Java) HttpServlet which p
We are running more than 2000 junit, Most of the tests connect to an Oracle database with jdbc calls. We have a problem with very few of the tests that can not connect to the DB for some reason. Here
Below is a method that I\'m having a hard time figuring out how to test using JUnit. This method is difficult to test because it depends on the results of other methods (e.g. getClosestDcoumentCode).