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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 20423 - 20452 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20423
Hi, I think it isn't a good solution to merge different APIs. First, what's your intention? Maybe you should first try to identify your test domains, for...
Böhm, Martin
martinboehms...
Offline Send Email
Apr 1, 2008
11:05 am
20424
Bohm, Thanks for the excellent insight. First of all the application IS an API, for a web service and it has database, UI , and Business Logic. What i am...
Kamal
kamal2222ahmed
Online Now Send Email
Apr 1, 2008
2:45 pm
20425
Hi, is it really necessary to test through all application layers? Your functional test sounds like a test of a simple business function no matter of the back...
Böhm, Martin
martinboehms...
Offline Send Email
Apr 2, 2008
10:15 am
20426
Dear Alex, I hear that you are frustrated with the speed with which your suggestions are being incorporated into JUnit. As I stated in my message to you dated...
Kent Beck
kentlbeck
Offline Send Email
Apr 2, 2008
1:43 pm
20427
Hi all, I've been looking around a bit for some sort of parallel execution of JUnit 4.4+ tests, but I didn't find much. So, I tried a few things myself and...
Daniel Brolund
daniel.brolund
Offline Send Email
Apr 3, 2008
2:59 pm
20428
... Hi Daniel, Nice thinking. Did you consider using java.util.concurrent.CountDownLatch and maybe the Executor framework? That might better communicate the...
James Abley
taboozizi
Offline Send Email
Apr 3, 2008
7:51 pm
20429
Hi All i am working on unit testing of struts. it is successfully run but one problem is there verifyForward is not working. it shows error like ...
pankaj khare
pankaj_0405
Offline Send Email
Apr 4, 2008
11:29 am
20430
Waiting for your explanation how I can fill in missing javadoc and to write automatic tests. See my answers below quoted text. ... a union ... Ok, I see. You...
toalexsmail
Offline Send Email
Apr 4, 2008
5:24 pm
20431
... Have you tried submitting patches? I see that you have created Feature Requests on Sourceforge, but I can't see any associated patch. I think that might be...
James Abley
taboozizi
Offline Send Email
Apr 4, 2008
10:03 pm
20432
Hi all Pros I am new to junit and have a task at hand. i need to build an automation test suite using junit to test these API. the api's called using http ...
novice junit
novice.junit@...
Send Email
Apr 6, 2008
11:54 pm
20433
Hi, first you should know, that you have to dig in more advanced junit topics to cope with your task. For myself I read http://junit.sourceforge.net/ and the ...
Böhm, Martin
martinboehms...
Offline Send Email
Apr 7, 2008
10:54 am
20434
Hello Martin, Thanks much for your inputs on my query. have skimmed through the junit cookbook and the junit faq's posted by this mailing list. however, not...
novice junit
novice.junit@...
Send Email
Apr 7, 2008
6:09 pm
20435
Hi, why you are using junit if your intention is not to write unit tests? Overall it sounds to be more a pure programming issue than a task of unit testing by...
Böhm, Martin
martinboehms...
Offline Send Email
Apr 8, 2008
7:26 am
20436
I've just gotten into parameterized testing and customized JUnit4 Runners, but I have a few questions: How do I go about making a parameterized test for which...
kelvsyc
Offline Send Email
Apr 10, 2008
10:08 am
20437
... What Parameterized runner does it takes a Collection that returns by @Parameterized method run over it, for each Object[] calls constructor of your class...
toalexsmail
Offline Send Email
Apr 10, 2008
10:35 pm
20438
I made a mistake in my previous posting. Unfortunately, until now my post wasn't posted, so I have no source to quote. I have waited a while, but it is very...
toalexsmail
Offline Send Email
Apr 10, 2008
11:50 pm
20439
I thought again and I found some other solutions. ... As I stated in my previous answer in Java the only way to supply default parameters to function (and to...
toalexsmail
Offline Send Email
Apr 10, 2008
11:50 pm
20440
FYI, here is how we do it with TestNG, maybe something similar could be considered for inclusion in JUnit? @Parameters("port-number") @Test public void...
Cédric Beust 
cbeust
Offline Send Email
Apr 11, 2008
4:25 am
20441
Suppose I have a test class, which I want to run with two different Runners. How would I do so without having to duplicate the test class (such that each copy...
kelvsyc
Offline Send Email
Apr 12, 2008
1:52 am
20442
The javadoc refence found in JUnit website was outdated, is about JUnit 4.0. I suggest the updated for the current version, 4.4, as had many changes since...
xisjulio
Offline Send Email
Apr 12, 2008
12:40 pm
20443
Hi there. All the doco I see on JUnit talks about various annotations, like @Test, @Before and so on. I'm using Java 1.4 in Eclipse 3.2 with Junit 3.8.1 and...
kristoferamplitude
kristoferamp...
Offline Send Email
Apr 12, 2008
6:04 pm
20444
Use the annotations on JUnit 4 with Java5. For JUnit3 on Java 1.4, use the naming conventions (e.g. methods named "testFoo...") -jn- On Sat, Apr 12, 2008 at...
Joel Neely
joelneely
Offline Send Email
Apr 12, 2008
6:25 pm
20445
I can't think of a built in way. However, I think you could write a compound runner that would take a list of runners. Now I'm curious, but I don't have time...
Kent Beck
kentlbeck
Offline Send Email
Apr 12, 2008
7:36 pm
20446
... compound ... don't have ... Behalf Of ... class ... instantiate the particular runner that you want to run the test class under. Actually I am currently...
Rula
usfce
Offline Send Email
Apr 14, 2008
5:23 am
20447
... compound ... don't have ... Behalf Of ... class ... I would create an interface for the runners. Then at run-time, instantiate the particular runner that...
Rula
usfce
Offline Send Email
Apr 14, 2008
5:23 am
20448
if u want to use @test,@Before u have to configure junit4.4 jar file On Sat, Apr 12, 2008 at 7:53 PM, kristoferamplitude <kauer@...> ... -- Thanks &...
pankaj khare
pankaj_0405
Offline Send Email
Apr 14, 2008
10:32 pm
20449
Bohm, The reason for integrating all unit test frameworks, is that i am not taking the applications "class" as a unit to test. rather taking a functional test...
Kamal
kamal2222ahmed
Online Now Send Email
Apr 16, 2008
2:56 pm
20450
when I was reading junit4.4 source ,I find no notes or javadoc about ComparisonCompactor.java .So I hava difficult in understanding about...
 
zengcaihui19...
Offline Send Email
Apr 17, 2008
6:14 am
20451
We don't document private classes. Having said that, I'll break that rule here :-) The goal of a ComparisonCompactor is to take two strings that differ and...
Kent Beck
kentlbeck
Offline Send Email
Apr 18, 2008
4:17 am
20452
===================================================================== CALL FOR PAPERS ... Testing: Academic and Industrial Conference - Practice and Research...
Gregory M. Kapfhammer
gregorykapfh...
Offline Send Email
Apr 18, 2008
4:51 pm
Messages 20423 - 20452 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