... The current datasheet states that using Agitator is more effective than writing tests manually. If I remember correctly, an earlier version more directly...
If we are not able to comment our test methods in suite, we have scroll our Test case from top to bottom to comment each test method using @Ignore, this is not...
... The system did not work just fine. As you point out, developers would not and could not operate this way. This wasn't a problem with your developers. It...
Elliotte Harold
elharo@...
Jun 1, 2006 10:59 am
16782
... Interesting post. One of the no-design-by-contract cases you mention there is "The update of an internal XML representation." Actually XOM uses design by...
Elliotte Harold
elharo@...
Jun 1, 2006 11:34 am
16783
I'm having a devil of a time understanding the code below as Java. What am I missing? ... Robert C. Martin (Uncle Bob) | email: unclebob@... ...
... Consider the sponsored link that appears when you do a google search on Agitar: "Don't just automate test execution Automate Java test creation" ... Robert...
... I am quite convinced that test-first is a good approach to a huge majority of software situations. It is my default position. When, as very rarely...
I wasn't planning to automate the generation. What I am finding is that there are a many compile cases to be tested but not so many as that they would need to...
The code is a straightforward combination of Java 1.5 generics with the delegation pattern. In this case, the delegation is "public" delegation, where the...
... Automation does not imply lack of human involvement - perhaps "full automation" does. But we never used that term. The most effective and common form of...
... It's not fine with me. In the end, if a developer can show me that s/ he's got very high test coverage, then I'd accept the effort. But I'd also strongly...
Thanks Kent. Someone from my company should be contacting you shortly. Chris ... and able to ... agreement, "A ... form under ... terms. ... is ... patent ... ...
Hi, I need some information regarding JUnit. All I have heard is that JUnit can and is used widely for unit testing the JAVA code. Can the JUnit be used to...
... Yes, and for that reason, I don't think Agitar will make a code base "more TDD-able" if that code base doesn't have this quality in the first place. ...
... That's a bit extreme, but not contradictory with what I said earlier. I can't really think of any project I worked on where I knew deep inside that 100% of...
... Perhaps that depends on what you define as TDD. When faced with a large legacy code base with no tests, I will still write a test before introducing a new...
Elliotte Harold
elharo@...
Jun 2, 2006 11:49 am
16797
how are you? i send the details. OK ? [Non-text portions of this message have been removed]...
... Just a slight disagreement here - I would suggest that TDD is quite relevant if the QA department is augmenting the automated unit tests. In my ...
... Hi Cedric, good to see you too - we should follow-up on that plan we talked about well over a year ago and meet in person. ... Well said. There are obvious...
Hi, I've got about 250 JUnit tests so far for my little system, and it is working great. But.... I've got two flavors to test. one with a real JDCB database ...
I am not a testing guru, but I (and our small company) try to be professional. As part of that our goal is to never release code that is untested, and we use...
Pat: We have an equivalent issue, which we solved by specifying the data source in a config file. We have two test sets, one running the tests against the test...
... Sounds like it's time to refactor so this isn't a problem. Make it a runtime configurable option, instead of something controlled by a property file....
Elliotte Harold
elharo@...
Jun 2, 2006 5:50 pm
16805
... You seem to be missing the key question, which is not how to control the switch, but how to get JUnit to automatically execute all of the tests twice. -- ...
... No. It's not a trivial or unimportant difference. testing first is radically different than testing last. It is not just about testing. It is about...
Elliotte Harold
elharo@...
Jun 2, 2006 5:57 pm
16807
... It seems to me that the use of a property file makes it a runtime configurable option: just launch your test by pointing them to a different property...
... Right, it is runtime, different bundle, shell argument, etc. are all isomorphic. ... OK, probably a dumb question, what is a test group? Got a URL so I can...