Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

junit · JUnit, the Java unit testing framework written by Kent Beck and Erich Gamma.

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 31223
  • Category: Java
  • Founded: Nov 6, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

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

Messages

Advanced
Messages Help
Messages 18607 - 18636 of 24384   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
18607 junitheadache Send Email Jan 1, 2007
2:09 pm
I've dled the bundle from EMF website however I've no idea how to install it? I've unzipped it and its just a bunch of jar files? I am new to eclipse should I...
18608 Ole Ersoy
ole_ersoy Send Email
Jan 1, 2007
9:53 pm
Hey Mate, Always glad to help. You are right - I tried downloading the sdk, and I got a lot of jars inside the root eclipse directory, along with 8 plugins for...
18609 bohs01@...
junitheadache Send Email
Jan 2, 2007
11:49 am
Hi Ole, I found the update manager on the EMF website, both both URLs i used came up with an error saying the installation is not comptible as i am mising EMF...
18610 David Saff
dsaff Send Email
Jan 2, 2007
3:14 pm
Jimm, It's not clear to me the exact steps you've taken, so I'm not sure how to help you with this specific problem. From a higher-level point of view, what...
18611 David Saff
dsaff Send Email
Jan 2, 2007
3:39 pm
Ole, I'm getting my head around your suggestions. (At least) one thing is tripping me up: ... Do we write this in the first place? Perhaps another example...
18612 G J Thimothy
johnthimothyg Send Email
Jan 2, 2007
3:55 pm
USE JTest ... === message truncated === __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam...
18613 Mike Bria
bria526 Send Email
Jan 2, 2007
4:47 pm
... {clip} ... Ole, forgive me if I'm missing your point, but I'm curious why, assuming you even have a valid reason to write the above util method, it is not...
18614 Ole Ersoy
ole_ersoy Send Email
Jan 2, 2007
7:21 pm
Wow - That's really strangeR. Maybe the update manager is trying to find updates compatible with the manual install you did earlier. Try downloading a brand...
18615 Ole Ersoy
ole_ersoy Send Email
Jan 3, 2007
12:46 am
Hey David, I'm going to go over some obvious stuff, which you already know, just for clearity. I tried to start with something really simple that represents...
18616 Calvin Austin
calvinandblogs Send Email
Jan 3, 2007
12:53 am
... There are several great commercial tools that do automated test case creation. Feel free to experiment with testgen4j which is an open source project we...
18617 David Saff
dsaff Send Email
Jan 3, 2007
5:41 am
Ole, I'm not sure I'm any closer to the main point. Let me try to summarize what you're suggesting: * We would like to have methods that are 100% tested *...
18618 Ole Ersoy
ole_ersoy Send Email
Jan 3, 2007
8:39 am
Hey David, ... I like it - Although let me add that it is really important to agree on what 100% means in a well structured / unambiguous context. ... Sure -...
18619 Cédric Beust 
cbeust Send Email
Jan 3, 2007
5:15 pm
... That's a very deceptive statement. Not only is it very hard to reach 100% testing (just because your code coverage claims 100% doesn't mean you are...
18620 Mike Bria
bria526 Send Email
Jan 3, 2007
5:24 pm
OIe -- Just curious if you had any comment on my question to you earlier in the chain. Thanks! --MB [Non-text portions of this message have been removed]...
18621 J. B. Rainsberger
nails762 Send Email
Jan 3, 2007
6:11 pm
... Do you mean "it would be nice if 100% tested code took 0 time"? or that "it should be possible today to have 100% tested code in 0 time"? It seems to me...
18622 Ole Ersoy
ole_ersoy Send Email
Jan 3, 2007
7:22 pm
We first have to agree on what 100% means. I provided a very simple example in the earlier post. The example gives a 100% tested tested method example, given...
18623 Ole Ersoy
ole_ersoy Send Email
Jan 3, 2007
7:35 pm
Mike, Do you mean the part about writing the code first, and then testing or writing the test first and then coding? Let me just suppose that that is it. ...
18624 Cédric Beust 
cbeust Send Email
Jan 3, 2007
7:37 pm
... Yes, but your example is too simple since it only contains one branch (most examples extolling the virtues of code coverage have this flaw :-)). 100%...
18625 Mike Bria
bria526 Send Email
Jan 3, 2007
8:11 pm
On 1/3/07, Cédric Beust ♔ <cbeust@...> wrote: {snip} ... lines of code? Cedric -- I don't quite understand your example. Why would that code ever be...
18626 Cédric Beust â...
cbeust Send Email
Jan 3, 2007
8:43 pm
Mike, Yes, I think you missed my point :-) I was just showing a snippet of code with a few branches. I'm sure you can easily find similar code in your own...
18627 Ole Ersoy
ole_ersoy Send Email
Jan 3, 2007
9:06 pm
OK - This is just about how to install EMF / Eclipse, since Jimm was wondering about it earlier. I did a complete install from scratch. Here my steps: Download...
18628 Ole Ersoy
ole_ersoy Send Email
Jan 3, 2007
9:31 pm
To answer that you would have to analyze the simple example I gave earlier and then show why you think what you just said is accurate. ... ...
18629 Ole Ersoy
ole_ersoy Send Email
Jan 3, 2007
9:41 pm
Cédric, Excellent example old Chap. So a branch is something that takes the code down a certain path. if ( a > 10 ) is a branch. I think we agree that it's...
18630 Jeff Langr
jlangr Send Email
Jan 3, 2007
9:53 pm
... Greetings Cedric, I prefer not to use coverage tools (in fact, I strongly resist characterizing the quality of unit testing with coverage numbers), but ...
18631 Cédric Beust 
cbeust Send Email
Jan 3, 2007
10:30 pm
Ole, I'm not sure what point you are trying to make with this example, and it seems to me we drifted away from the point that I was making: 100% branch ...
18632 Ole Ersoy
ole_ersoy Send Email
Jan 3, 2007
11:47 pm
Cédric, Just building on your example to show how 100% testing would be done. It's easy to automate, and would be a valuable tool in the developer toolbelt....
18633 Cédric Beust 
cbeust Send Email
Jan 4, 2007
12:03 am
... The question wasn't to figure out whether it can be done (it's a graph traversal problem, we know it can be solved) but to decide whether it's practical to...
18634 Alexandru Popescu
alexpopescu7... Send Email
Jan 4, 2007
12:58 am
... In fact I got the impression that Ole is not gonna start building such a tool, but challenging others to do it for him :-). ./alex -- .w( the_mindstorm )p....
18635 Ole Ersoy
ole_ersoy Send Email
Jan 4, 2007
1:37 am
Cédric, When you are right, you are right. That's why I'm not coding it. Jimm is :-) Right Jimm...Hey...Where you goin??? Anyways this is not an NP hard...
18636 Cédric Beust 
cbeust Send Email
Jan 4, 2007
2:19 am
Hey Ole, ... Well, I actually do feel a bit better reading this, since it means you at least have a little idea of what you are up against. It's not NP hard,...
Messages 18607 - 18636 of 24384   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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