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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 20273 - 20302 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20273
Hi, Can you explain what information you need. Creating the report is not difficult: You run your testsuite with Ant's JUnit task, and create a report with the...
j_cumps
Offline Send Email
Feb 1, 2008
4:16 pm
20274
Hey, there! I'm hoping someone on this end of the world can answer a question for me. I tried posting this on the Maven mailing list but haven't gotten any...
Derry Cannon
d3rryc
Offline Send Email
Feb 2, 2008
2:14 am
20275
Eh... we did reply with the answer: http://www.nabble.com/JUnit-tests-requiring-j2ee.jar-fail-when-running-mvn-surefire%3Atest-td15060503.html Did you not get...
Wayne Fay
jaeger321
Offline Send Email
Feb 2, 2008
10:52 am
20276
Hi all, How or where can I submit source code and patches for JUnit bugs ? Kind regards, Sytze van Koningsveld....
sytzevk
Offline Send Email
Feb 2, 2008
7:10 pm
20277
Hi, ... I'm not sure what you mean by "unique to this class" but the static field initialized by a @BeforeClass method is accessible by all instances of the...
Lasse Koskela
lassekoskela
Offline Send Email
Feb 2, 2008
11:28 pm
20278
Hello, I am trying to test a parser class I wrote. In my test method I invoke the parser method I want to test with a string of data. However , the method...
Jason Davis
mohadibtheho...
Offline Send Email
Feb 2, 2008
11:36 pm
20279
Hi Sytze, ... Through the Sourceforge project's tracker: http://sourceforge.net/projects/junit/ Lasse -- Lasse Koskela * Author of "Test Driven" (Manning...
Lasse Koskela
lassekoskela
Offline Send Email
Feb 2, 2008
11:36 pm
20280
... By substituting a test double (a spy) for the listener in your unit test, effectively giving you access to the interactions between the parser and the...
Lasse Koskela
lassekoskela
Offline Send Email
Feb 2, 2008
11:39 pm
20281
You need to create a object that implements the Listener interface, and use that in your test. These are generally known Mocks, Stubs,Fakes... e.g interface...
Andrew McDonagh
andy_ipaccess
Offline Send Email
Feb 2, 2008
11:54 pm
20282
... When parsing structured data, the parameters and precise sequence of calls to the listener will be important. If you write your mock objects by hand it...
Nat Pryce
nat_pryce
Offline Send Email
Feb 3, 2008
11:59 am
20283
... Not necessarily, we don't know what the parsing algorithm is, so can't make this call. ... Don't get me wrong, Jmock and the other mocking frameworks are...
Andrew McDonagh
andy_ipaccess
Offline Send Email
Feb 3, 2008
12:09 pm
20284
Thanks everyone for the replies :) I wound up searching the archives with the word asynchronous and found mention of FutureResult. Pretty cool class :) That...
Jason Davis
mohadibtheho...
Offline Send Email
Feb 3, 2008
8:10 pm
20285
Hi, if I may rewrite my question, when I run this "Test" class, how many instances of this class are created and runned ?! -- Thx, Milan. ... From: Lasse...
Milan Milanovic
milanmilanovich
Offline Send Email
Feb 3, 2008
8:11 pm
20286
I am trying to use <junit> target in ANT 1.6 and have class loader issues as described in this FAQ. http://ant.apache.org/faq.html#delegating-classloader I am...
Srinivasan TK
tksri2000
Offline Send Email
Feb 3, 2008
8:11 pm
20287
... Well, I just did a little experiment, which confirmed my intuitive understanding of how it works. public class TestBeforeClass { public static MyClass ins;...
James Abley
taboozizi
Offline Send Email
Feb 4, 2008
2:07 pm
20288
Hi, I am interested in gathering insight into executing and managing tests where the environment is a possibly large set of virtualized (ie, VMWare) machines...
Mike Foley
mike_foley_0...
Offline Send Email
Feb 4, 2008
2:56 pm
20289
The answer to what I think is Milan's question is "one for each method annotated with @Test". The order, James, is as you have pointed out. Regards, Kent Beck ...
Kent Beck
kentlbeck
Offline Send Email
Feb 4, 2008
5:48 pm
20290
Does anyone have any recommendations on how they arrange/group their jUnit tests? I've poked around the net but haven't gotten much in this category... The...
Hobbs, Joseph
thedirector721
Offline Send Email
Feb 4, 2008
7:05 pm
20291
... Try the JUnit FAQ. This entry might be a good place to start: http://junit.sourceforge.net/doc/faq/faq.htm#tests_15 There are many good pieces of...
Simon Chappell
spchappell
Offline Send Email
Feb 4, 2008
7:12 pm
20292
Simon, ... Definitely, and started there first! It gave me some really good pointers and make me rethink some of my strategy! ... behaviours. ... for ... ...
thedirector721
Offline Send Email
Feb 4, 2008
11:59 pm
20293
Dear Mr. Beck, that's exactly what I needed to know. Instance of Test class is created for every @Test method. Thank you. _____________________________ Best...
milanmilanovich
Offline Send Email
Feb 4, 2008
11:59 pm
20294
If you exactly follow the instructions for Ant 1.6, it will work. faq: <style> or <junit> ignores my <classpath> - Ant 1.6.x version ...
j_cumps
Offline Send Email
Feb 5, 2008
7:39 am
20295
... I also make the experience to think in terms of behaviors of the class under test and the methods. For myself I think thats the best way to test the...
Böhm, Martin
martinboehms...
Offline Send Email
Feb 5, 2008
11:55 am
20296
Dependent Object Framework The Dependent Object Framework (DOF) (http://sourceforge.net/projects/dof/ <http://sourceforge.net/projects/dof/> ) enables...
justingordon
Online Now Send Email
Feb 5, 2008
11:56 am
20297
I ran diagnostics on the ant i am using. I see junit : Missing dependency junit.framework.Test for junit.. I didnt quite follow the instructions on how to go ...
Srinivasan TK
tksri2000
Offline Send Email
Feb 5, 2008
10:18 pm
20298
Walter, Thanks for the report. I finally fixed it in head. Cheers, Kent Beck Three Rivers Institute _____ From: junit@yahoogroups.com...
Kent Beck
kentlbeck
Offline Send Email
Feb 5, 2008
10:34 pm
20299
What version of junit.jar did you place in ant/lib? Try if replacing your junit.jar with JUnit version 3.8 solves the issue. Regards, Jan ... ...
j_cumps
Offline Send Email
Feb 6, 2008
12:03 pm
20300
Agile Development Practices 2008 Conference November 10-13, 2008 * Orlando, Florida Shingle Creek Resort http://www.sqe.com/go?NG08ADP...
Megan Brown
agiledevelop...
Offline Send Email
Feb 7, 2008
3:18 pm
20301
Hello Everyone, I am interested if the "annotated description" feature can get the javadoc method description and adding a textual description to its relative...
Francesco
won_espylacopa
Offline Send Email
Feb 8, 2008
3:02 am
20302
... Well, in the meanwhile I solved my needs picking directly the source code of the Ant JUnit task and patching :p So if my little patch solution can be...
Francesco
won_espylacopa
Offline Send Email
Feb 8, 2008
12:46 pm
Messages 20273 - 20302 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