Just go through the junit official site, or Wikipedia, you will find more reference.....anyway, Kent's TDD by example is a good start.... ... [Non-text...
23898
David Saff
dsaff
May 21, 2012 7:15 pm
Hi, JUnit users. https://github.com/KentBeck/junit/issues/429 is a bug that needs a quick fix in order to restore deterministic test ordering in JUnit 4.11....
23899
akshay.mnit11
May 22, 2012 1:16 pm
I am writing testing framework to test an application. This application receives IM(audio/video) and then notifies the user through notification bar. i need an...
23900
David Saff
saffatgoogle
May 22, 2012 2:08 pm
The answer will depend a lot on the details of your app and OS. In many cases, teams find the most value in simulating these kinds of UI interactions in their...
23901
akshay.mnit11
May 23, 2012 11:19 am
thanks for the reply. I need to click on notification item when it is received from my test case(then activity will be launched and i can continue testing with...
23902
David Saff
saffatgoogle
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
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
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...
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
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
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
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
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
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
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
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
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@...
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
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
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@...
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
Jun 29, 2012 2:20 pm
The "automatic" unsubscribe doesn' work. Thanks, Indrit ... [Non-text portions of this message have been removed]...
23919
Esko Luontola
egeluontola
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@...
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
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
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
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
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
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@...
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...