... used to ... a ... correct that ... the ... First thanks thanks for a response to my question. I know Junit was developed with unit testing of everything...
Hi, I have a class that creates an object. This object loads a .dll. This works. But when I created a test class in JUnit, the load of library failed. My...
Hi - ... here ... - and we did it! (we had to - it's a really needed tool) And I'm not satisfied with the result and the TDD-ing we did ... But before I share...
Harald, this sounds like a great experiment. Thanks for putting it together--with an acceptance test and everything! Since I fancy myself a good TDD-er, I...
Hello everybody, I have a little question because I have to write an article about JUnit for my studies. Now, I found out that the classes "TestCase" and...
HttpUnit 1.6 also appends .0 like 0.0 to 0 values when scripts are submitted and parameters passed from inside the function contain 0.0 instead of 0 causing...
Hi, If you are into software testing or planing to explore this field, this group helps you by bringing together technical experts, someone who has encountered...
Is there a boolean assertEquals( f1, f2 ) where the contents are compared and evaluated ? It's easy enough to write one but I'd rather reuse than re-invent....
... I'm sure I'm missing something - but the point of the assert* family is to abort on failure, return on success. What is the boolean return value supposed...
... I guess the boolean is a mistake. In the subject you can see he wants to check if two files have the same content (please Ian, put your entire question in...
I'm having some concerns as I write some tests for my DAOs. My concern is that I can't figure out a good way to write these tests without relying on other DAO...
... You might wish to go to www.diasparsoftware.com and find the article "JUnit: A Starter Guide". It discusses the difference between test cases and test...
... Diasparsoft Toolkit (www.diasparsoftware.com/toolkit) includes a StreamUtil class that reads and collects text from an InputStream. Then you could write...
... Don't worry about this. As long as you test some methods on their own, feel free to use those (tested) methods to test others, especially if it's costly to...
... I love Vladimir, but I dislike this API. Files are equal if they represent the same physical file on disk, so assertEquals(File, File) should not be...
We use dbunit. Hopefully I'm not misunderstanding your problem -- I also agree that I do not want a test method to depend on any system code but the code...
Hi, Can somebody help me in a methodology for estimating the effort required for developing JUNIT test cases/classes for a complex websphere based application....
Perhaps a bit beside the topic: For our plain JDBC DAO's, we cut off the database using Mockrunner. In the test we mock the connection and provide the...
... Make a first stab (over-estimate). As you become more and more familiar with writing tests your estimates will get better. It's just a matter of ...
... Are you adding tests to existing code or starting to test-drive new features? If you are adding tests to existing code, then the cost of adding tests ...
Hi Kent, I don't know if anyone else has noticed this, but the latest JUnit from CVS is broken. A test I'd just written and expected to fail didn't. On 11...
Hi all Sorry that was my mistake re: the boolean return code. I meant assertEquals according to the JUnit assert framework. The junit-addon did the job. ...
... give me a ... Don't know how I got to that thought - of course it does. I just downloaded HttpUnit 1.6, and it works like a charm. Thank you very much!!! ...