... Yep, thanks, we'll give it a try. Giuliano -- Piergiuliano Bossi Blog: http://thinkingbox.wordpress.com/ Twitter: http://twitter.com/thinkingbox (English) ...
23729
pmangate@...
pmangate...
Oct 6, 2011 4:37 pm
Hi All , I am very new to JUnit. I would like to use Junit for Strust application. I am using Struts1.3 and wan to use jUnit for testing. Please guide, which...
23730
lewis john mcgibbney
lewismc2
Oct 6, 2011 5:59 pm
Hi, Unfortunately without looking at the FAQ's and some 'light39; reading from at least the JUnit site there is little hope of getting further with this. I'm...
23731
mdankan
Oct 11, 2011 1:27 pm
Hi Everyone, I am running a suite of tests from command line on Linux and when I ran the tests and as expected at run time an output is printed on the command...
23732
JohnS
asmallphrase
Oct 18, 2011 2:33 am
I'm trying to create a runnable JAR in eclipse using Junit 4.9 but I can't get it right. This website says it is necessary to create a separate class 'main' ...
23733
Joakim Ohlrogge
j0hlrogge
Oct 18, 2011 11:53 am
You need a main class and point to the main class in the manifest. If your class has dependencies those need to be listed in the manifests classpath. The first...
23734
David Saff
dsaff
Oct 18, 2011 3:15 pm
mdankan, Sorry for the long response time. First, and most importantly, are you using the JUnit 3 runner (junit.*), or JUnit 4 (org.junit.core.JUnitCore)? ...
23735
JohnS
asmallphrase
Oct 18, 2011 10:24 pm
I don't think it's really a JAVA question. I guess what I'm really asking is 'what goes goes in the class that has the main?' I've been reading the FAQ but I'm...
23736
Joakim Ohlrogge
j0hlrogge
Oct 19, 2011 10:29 am
... If you provide some more details such as what error you are getting (Exception with message and full stacktrace) and also what your test looks like would...
23737
JohnS
asmallphrase
Oct 20, 2011 2:21 am
Ah yes, this looks done more properly. Thanks Joakim //////////////////////////////////////////////// package embrowsers; import org.junit.runner.JUnitCore; ...
23738
Stefan Birkner
stefan.birkner
Oct 24, 2011 2:53 pm
I'm still migrating. See http://stefanbirkner.github.com/junit/ for the progress....
23739
Stefan Birkner
stefan.birkner
Oct 26, 2011 12:20 am
I just created a bugfix for the Parameterized runner. The pull request slightly modifies the behaviour of the runner. Today the @Parameter method is called...
23740
David Saff
dsaff
Oct 26, 2011 8:37 pm
To emphasize my concern, in the past, the Parameters runner would allow a "lazy" evaluation of parameters. As long as you knew the number of rows in the table...
23741
shca08_junit
Oct 27, 2011 1:03 pm
Just as a followup for everyone on this... One issue seems to be that FEST handles certain things differently on OSX. For example, we use customized JButtons...
23742
Dawid Weiss
dawid.weiss@...
Oct 27, 2011 10:17 pm
Hi everyone. My name is Dawid Weiss, I'm a committer to Apache Lucene/Solr. Lucene and Solr use a custom runner to randomize test execution extensively. This...
23743
David Saff
dsaff
Oct 28, 2011 6:34 pm
Dawid, The design of Description has several challenges, and I welcome the chance to move towards a better solution. I think that getTestClass(),...
23744
Dawid Weiss
dawid.weiss@...
Oct 29, 2011 10:43 am
Hi David, Thanks for your reply. I admit I wasn't aiming at larger refactorings, only at slight changes to make Description a bit more permissive (and these...
23745
Dawid Weiss
dawid.weiss@...
Oct 31, 2011 12:28 am
Hi, I've created an issue to extend Assume to contain explicit messages/ Throwable cause if needed. The issue includes a patch: ...
23746
p.lipinski
Oct 31, 2011 12:46 pm
Hi Some time ago I've written a runner for JUnit which is a replacement for the standard Parameterized runner - is easier & more flexible to use, gives nicer...
23747
David Saff
dsaff
Oct 31, 2011 5:00 pm
All pull requests have their own issue numbers: it's awkward, but you get used to it. If the name of the pull request (or possibly the description) contains...
23748
David Saff
dsaff
Oct 31, 2011 6:51 pm
All, I've been very lucky for several years to had both a family and an employer that have left room for me to contribute to JUnit for free. However, for at...
23749
sinu
srijesh_a
Nov 1, 2011 3:54 pm
Hello, Tye link does not work. Could you please also post the correct link. I am having suite filter runner with classes that fall into that suite. One of the...
23750
Dawid Weiss
dawid.weiss@...
Nov 1, 2011 3:59 pm
Thanks David! Dawid ... [Non-text portions of this message have been removed]...
23751
Dawid Weiss
dawid.weiss@...
Nov 1, 2011 8:24 pm
It does work if you omit the final dot... http://code.google.com/p/junitparams Dawid ... [Non-text portions of this message have been removed]...
23752
sschroev
Nov 1, 2011 8:25 pm
The URL was auto-linked incorrectly; the trailing dot was added to the href. The link is: http://code.google.com/p/junitparams/...
23753
Matthew Farwell
mjfarwell
Nov 4, 2011 9:43 pm
Hi, I'm interested in this, though for slightly different reasons, maybe we could exchange ideas on this. I haven't exactly thought this through in detail, but...
23754
Bill Venners
billvenners
Nov 4, 2011 10:01 pm
Hi Matthew, Actually we are planning to "fix Eclipse" very soon. The next release of ScalaTest, version 2.0, will include enhancements to support IDE...
23755
Dawid Weiss
dawid.weiss@...
Nov 5, 2011 11:38 am
I think your reasons are aligned with mine -- the problem is that a test's visual description for the user interface and where it "points to" should be...
23756
Matthew Farwell
mjfarwell
Nov 5, 2011 11:38 am
Hi Bill, I did the JUnit integration for Scala-IDE, so yes I would like to be involved. Currently Scala-IDE uses the Junit plugin for running and displaying...
23757
Kevin Cooney
kevincooney2000
Nov 7, 2011 8:41 pm
I think that the reason why Description is final is because it is a value class, and there is code (especially in filters) that expects Description.equals() to...