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: 31224
  • Category: Java
  • Founded: Nov 6, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 23902 - 23931 of 24393   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
23902 David Saff
saffatgoogle Send Email
May 23, 2012
1:07 pm
There may be a way to do what you want using some kind of OS-specific screen-manipulation automation framework. As I mentioned below, I'd recommend seeing if...
23903 akshay.mnit11 Send Email May 24, 2012
12:50 pm
Can i click on notification bar item .. That is, I need to drag Notification bar down and then click on the first notification item.. Please help in this...
23904 David Saff
saffatgoogle Send Email
May 24, 2012
1:13 pm
I'm assuming this is the same problem you asked about before, when you were using Robotium for automation. You will definitely have better odds of an answer...
23905 Alan
alan_shaughn... Send Email
May 24, 2012
2:59 pm
I'm attempting to use cpsuite to run some tests from a jar file but it's having trouble using the jar file. Has anybody else seen issues around this? What am...
23906 David Saff
saffatgoogle Send Email
May 24, 2012
5:44 pm
CC:Johannes Link, the cpsuite author. Johannes, Any ideas on this? Thanks, David Saff ... [Non-text portions of this message have been removed]...
23907 David Saff
saffatgoogle Send Email
May 30, 2012
5:07 pm
Hi, all. Just so you know, I'll be on parental leave, and much more out of touch than usual, for the first half of summer 2012. Over the last few months, I've...
23908 Pradyumn Sharma
pradyumnsharma Send Email
Jun 19, 2012
2:56 pm
If this is NOT the right forum for this post, please advise me, and my apologies in advance. Trusting that this is the right place... There is the Eight Queens...
23909 Esko Luontola
egeluontola Send Email
Jun 19, 2012
4:12 pm
... You could write tests for low-level parts of the algorithm ("stepping stones" as Kent Beck called them in ...
23910 mihir jhala
mihirjhala Send Email
Jun 19, 2012
8:42 pm
Hello,   You need to write a method to place the queens where they can't attack each other.Write a method using following algorithm which will return a list. ...
23911 Kevin Cooney
kevincooney2000 Send Email
Jun 19, 2012
8:43 pm
Normally, the typical way to solve a problem like this would be to write some code to see if the constraints of the problem are met. In this case, go through...
23912 Colin Vipurs
zodiac_zx6 Send Email
Jun 19, 2012
8:43 pm
What have you tried so far? You'll need to make your question more specific to what your current focussed problem is. With the information you've provided this...
23913 Aaron V.
avh2222 Send Email
Jun 29, 2012
5:58 am
Are there any open-source libraries out there for launching junit tests and reporting back the results (such as might be done by an IDE, similar to Eclipse's...
23914 Dawid Weiss
dawid.weiss@... Send Email
Jun 29, 2012
7:13 am
Sure. Try an ant task called <junit4> from randomizedtesting package here: http://labs.carrotsearch.com/randomizedtesting.html The task is a nearly drop-in...
23915 bill.shannon@...
bs00011 Send Email
Jun 29, 2012
7:13 am
[This is a recording.] I'm out June 24 - July 1, 2012. I'll be reading mail occasionally. Bill...
23916 Esko Luontola
egeluontola Send Email
Jun 29, 2012
8:44 am
... I'm working on a new test runner (backward compatible with JUnit tests) which is such a stand-alone library with zero external dependencies: ...
23917 Dawid Weiss
dawid.weiss@... Send Email
Jun 29, 2012
8:56 am
... Interesting. This was part of the reason for that junit4 task I mentioned -- I needed a coordinated, full set of events from forked jvms (including ...
23918 Indrit Selimi
indritselimi Send Email
Jun 29, 2012
2:20 pm
The "automatic&quot; unsubscribe doesn' work. Thanks, Indrit ... [Non-text portions of this message have been removed]...
23919 Esko Luontola
egeluontola Send Email
Jun 30, 2012
1:37 am
... My goals for developing Jumi are wider than that and I don't think that it would be possible to reuse anything JUnit-specific. Some of the main reason for...
23920 Dawid Weiss
dawid.weiss@... Send Email
Jun 30, 2012
6:57 am
Ok, clear. ... This has nothing to do with test frameworks -- you can see any of these orderings on the console too and it is allowed by PrintStream contracts ...
23921 danieljswe Send Email Jul 1, 2012
1:15 pm
Hi, I'm trying to implement a test rule that handles unstable tests. It's made up of the test rule itself, plus an Unstable annotation that you can put either...
23922 David Saff
saffatgoogle Send Email
Jul 9, 2012
5:53 pm
Hi, all. I'm back from an extended vacation. I'll be working slowly through github issues, but haven't been closely monitoring the list. If there's anything ...
23923 yang8628 Send Email Jul 12, 2012
1:00 pm
Hello experts, I am working on a project having several Junit 4.10 test cases driven by Ant, requirement of adding detection of failed tests is brought up....
23924 David Saff
saffatgoogle Send Email
Jul 12, 2012
1:35 pm
Yang, Can you get all your tests running in a single JVM by adjusting the "forkmode"; parameter to your junit task? ( ...
23925 yang8628 Send Email Jul 13, 2012
12:30 pm
David, Good approach. But I am not sure if I turn this as "once", what kind influence would bring? I realize the cost of re-create JVM but each JVM process for...
23926 org.junit@... Send Email Jul 15, 2012
10:15 pm
Hello. I have a set of packages, let's call them "database-core", "database-sqlite", "database-postgres". The database-core package exposes an interface type...
23927 Esko Luontola
egeluontola Send Email
Jul 16, 2012
11:13 am
... You can do that by putting the common tests in an abstract test class with abstract factory method(s) for creating the concrete implementations. As an...
23928 org.junit@... Send Email Jul 16, 2012
6:44 pm
On Mon, 16 Jul 2012 14:13:22 +0300 ... Thanks, that's exactly the sort of thing I was looking for (didn't occur to me that JUnit would handle abstract classes...
23929 Kevin Cooney
kevincooney2000 Send Email
Jul 16, 2012
7:11 pm
Esko's solution is the most common (and likely best) approach. If you have a large number of tests, however, it could be tedious and a bit error prone; you...
23930 David Saff
saffatgoogle Send Email
Jul 17, 2012
8:45 pm
Yang, Sorry for the late response. I regularly run all my tests in the same JVM. Depending on your use case, it might be a fine trade-off. It should be easy...
23931 Teemu Kanstrén
tkanstren Send Email
Jul 18, 2012
3:27 pm
Maybe have the Ant task produce the JUnit report file and parse that to get the count of failed tests? ... [Non-text portions of this message have been...
Messages 23902 - 23931 of 24393   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