4
votes
Longest running unit tests?
JUnitReport works on the xml files produced by the JUnit task. You could write a task that would read the test durations out of the same xml files (TEST-*.xml). But you can also take a shortcut and …
0
votes
Can we use JUNIT for Automated Integration Testing?
The suggestion depends on your application and your objective.
I've written integration tests in JUnit, but I've also seen people use HtmlUnit (JUnit extension), Selenium, Watir, Fit/Fitnes …
5
votes
Are you really using unit tests?
I like Bob Martin's analogy: imagine you're a surgeon. What would you say to a patient who wanted to pay the surgery but told you to skip washing up ahead of time?
When a client hires me to …
0
votes
Where do you take mocking - immediate dependencies, or do you grow the boundaries…?
Your question has been debated for years and can also be rephrased as "what is a unit"?
There is no law of unit testing that says you need to test each class in isolation. However, to be ma …
2
votes
What unit tests should be written for simple POCO domain objects?
Typically a value object like that doesn't need to have its own tests. You'll get coverage from the classes that use it to actually do something.
The unit tests are designed to test behavio …
2
votes
Unit Test to verify object getting deallocated
Use _GTMDevLog :
See the Advanced Stuff | Unit Test Logging on this page.
More in …
0
votes
0
votes
Do you use WaTiR?
Worth noting that the FireWatir project has been rolled into the Watir core and the codebases integrated as of th …
0
votes
Looking for a better JavaScript unit test tool
You have "runs on actual browser" as a pro, but in my experience that is a con because it is slow. But what makes it valuable is the lack of sufficient JS emulation from the non-browser alternative …
0
votes
What are some JavaScript Unit Testing and Mocking Frameworks you have used?
You could try HtmlUnit which had a JQuery comp …
0
votes
Initialize object to test in SetUp or during the test method?
From talking with Kent Beck about the design of jUnit I know that Test Classes were a way to share setup between Tests, so using the common initialization was the intent. However, along with that, …
1
vote
How do you unit-test a plug-in to an application?
Most people miss the point of about mock objects. They aren't about testing, they're about interface discovery. Or as Michael Feather's put it a different way in a recent blurb: …
0
votes
Can unit tests have a execution time criteria?
What if the answer is no? Does that mean you wouldn't write the test?
If it is special case I would write the test and now worry about it.
If I stared having a lot of tests involvin …
2
votes
Unit test execution speed (how many tests per second?)
The goal is 100s of tests per second. The way you get there is by following Michael Feather's rules of unit tests …
2
votes
Which opensource java or .net project has best unit test coverage?
I work on CruiseControl (original Java version) and I think it is worth considering as a source of study for a few reasons:
…
