GOOS book is indeed a great book, but definitely not a book to begin with! -- Regards / Pozdrawiam Tomek Kaczanowski http://practicalunittesting.com 2012/5/14...
David, It works! Thanks so much. I got confused with the idea of returning a collection of object arrays. It looks much simpler now.. don't know what I was...
Why would you say that? :O I would think you could pick up all the basics you need from the junit site itself then move onto the GOOS book before you pick up...
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...
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....
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...
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...
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...
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...
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...
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...
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...
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...
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...
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. ...
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...
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...
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...
... 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 ...
... 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 ...
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...