Sorry for the long delay in responding. Matthew, This looks potentially related to your method-sorting patch? ( ...
23884
David Saff
saffatgoogle
May 10, 2012 2:06 pm
Rene, Sorry for the late reply. Unfortunately, I don't have a lot of experience with declarative services, so I can't be a lot of help. Are there ...
23885
bhavanisridharan
bhavanisridh...
May 11, 2012 5:31 pm
@RunWith(Parameterized.class) public class myTestClass { ... ... private static String homeFolder=new String("Y:\92;Development92;\Testing\\myTest\\Testfiles"); ...
23886
David Saff
saffatgoogle
May 11, 2012 5:56 pm
So the problem here is that you're creating a (1xN) array, but JUnit wants an (Nx1) array. You're creating here the equivalent of List({ file1, file2, file3...
23887
bhavanisridharan
bhavanisridh...
May 12, 2012 1:50 am
@RunWith(Parameterized.class) public class myTestClass { private WebDriver webdriver; private static String homeFolder=new...
23888
marquessilva126
May 14, 2012 12:59 pm
Hi, I am student and beginner in TDD in JUnit4 (Java). If you please, someone could suggest some books and/or where can I get some simple examples to learn...
23889
Simon Chappell
spchappell
May 14, 2012 1:10 pm
Marques, Have you worked your way through the JUnit FAQ? It's available online for reading and (if my memory serves me correctly) it would have been sent to...
23890
Colin Vipurs
zodiac_zx6
May 14, 2012 3:19 pm
The GOOS book is what I would consider to be the best book on TDD: ...
23891
David Saff
saffatgoogle
May 14, 2012 3:39 pm
I don't know what happens when you call a multi-dimensional array initializer with a multi-dimensional array in the middle. The good news is, you don't have...
23892
Tomek Kaczanowski
kaczanowski.tomek@...
May 14, 2012 4:05 pm
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...
23893
bhavanisridharan
bhavanisridh...
May 14, 2012 5:42 pm
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...
23894
marquessilva126
May 15, 2012 1:03 pm
Thank you Colin. Marques...
23895
marquessilva126
May 15, 2012 1:03 pm
Thank you Tomek Marques...
23896
Colin Vipurs
zodiac_zx6
May 15, 2012 1:04 pm
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...
23897
Young Gu
hyysguyang
May 15, 2012 1:18 pm
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...