Search the web
Sign In
New User? Sign Up
junit · JUnit, the Java unit testing framework written by Kent Beck and Erich Gamma.
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 16779 - 16808 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16779
... The current datasheet states that using Agitator is more effective than writing tests manually. If I remember correctly, an earlier version more directly...
Ilja Preuss
ipreussde
Offline Send Email
Jun 1, 2006
9:14 am
16780
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...
vgreddy43
Offline Send Email
Jun 1, 2006
10:18 am
16781
... 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@...
Send Email
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@...
Send Email
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@... ...
Robert Martin
rmartinoma
Offline Send Email
Jun 1, 2006
12:46 pm
16784
... 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...
Robert Martin
rmartinoma
Offline Send Email
Jun 1, 2006
12:55 pm
16785
... 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...
Robert Martin
rmartinoma
Offline Send Email
Jun 1, 2006
2:34 pm
16786
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...
Jon Barrilleaux
jonbarril
Offline Send Email
Jun 1, 2006
3:18 pm
16787
... The introduction of generics in Java 5, perhaps? Or what exactly do you have problems with? Regards, Ilja...
Ilja Preuss
ipreussde
Offline Send Email
Jun 1, 2006
4:35 pm
16788
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...
jonbarril
Offline Send Email
Jun 1, 2006
6:23 pm
16789
... 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...
albsavoia
Offline Send Email
Jun 1, 2006
11:41 pm
16790
... Do you think that a tool like Agitar would be useful in those situations where TDD is not? I have trouble with this because if Agitar can make...
Robert Martin
rmartinoma
Offline Send Email
Jun 2, 2006
1:47 am
16791
... 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...
Robert Martin
rmartinoma
Offline Send Email
Jun 2, 2006
1:50 am
16792
Thanks Kent. Someone from my company should be contacting you shortly. Chris ... and able to ... agreement, "A ... form under ... terms. ... is ... patent ... ...
cchaulk
Offline Send Email
Jun 2, 2006
5:05 am
16793
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...
suresh vittal
vg_suresh
Offline Send Email
Jun 2, 2006
5:05 am
16794
... 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. ...
Cédric Beust 
cbeust
Offline Send Email
Jun 2, 2006
5:36 am
16795
... 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...
Cédric Beust 
cbeust
Offline Send Email
Jun 2, 2006
5:45 am
16796
... 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@...
Send Email
Jun 2, 2006
11:49 am
16797
how are you? i send the details. OK ? [Non-text portions of this message have been removed]...
tlroche
Offline Send Email
Jun 2, 2006
12:26 pm
16798
... Google "java gui junit". You will turn up a variety of options. See also the yahoo group "java-gui-testing"....
twall
timothyrwall
Offline Send Email
Jun 2, 2006
12:52 pm
16799
... 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 ...
Carl Hume
carl_hume
Offline Send Email
Jun 2, 2006
2:47 pm
16800
... 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...
albsavoia
Offline Send Email
Jun 2, 2006
4:12 pm
16801
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 ...
Pat Farrell
pat22043
Offline Send Email
Jun 2, 2006
4:38 pm
16802
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...
James P Gunderson
jpg3u
Offline Send Email
Jun 2, 2006
5:38 pm
16803
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...
James P Gunderson
jpg3u
Offline Send Email
Jun 2, 2006
5:42 pm
16804
... 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@...
Send Email
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. -- ...
Pat Farrell
pat22043
Offline Send Email
Jun 2, 2006
5:56 pm
16806
... 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@...
Send Email
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...
Cédric Beust 
cbeust
Offline Send Email
Jun 2, 2006
5:57 pm
16808
... 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...
Pat Farrell
pat22043
Offline Send Email
Jun 2, 2006
6:03 pm
Messages 16779 - 16808 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help