Hi, UISpec4J 0.10 has just been published. The change log for this release is available here: http://www.uispec4j.org/changes-report.html Cheers, Régis....
Hi all, I started playing with UISpec4J - tired of the problems with Abbot, and curious about the different approach. My first experience has not been very...
Hi Nascif, Thanks for taking the time to tell us about these issues. ... What problems did you have with Abbot ? I never used it myself, but I thought it was...
... Abbot, and ... I have way too many problems with having reliable "reproducable" unit tests. I run my tests through many different paths - directly from ...
Problem solved - and I tracked it down to how I defined my testcase constructor, which lead to a bad interaction with JUnit. My code was like this: public...
Hi Nascif, ... That was tricky, the JUnit message could have been more explicit. Maybe we should tell them about this issue, or suggest a patch? Do you know...
... Maybe we ... were in ... Sure. The code that creates the problem is this one, from TestSuite.java: static public Test createTest(Class theClass, String...
Hi Nascif, ... It would surely be great to propose this change on a JUnit mailing list, so that it gets integrated into their next release. Will you do it, or...
Hi Regis, ... If you could do it it would be great, thanks. ... Yes. You would give up the compile-time checking for some run-time flexibility. Basically you...
Hi Nascif, On Tue, 09 Aug 2005 01:08:55 +0200, Nascif Abousalh-Neto ... As of release 0.11, there is a "UIComponent findComponent(Class uiComponentClass)"...
Hello, Thank you for your interest. The Tab key constant is missing in the Key class; we will add it for the next release. However if you wish to test a focus...
This may be a stupid question, but how do you run multiple tests? I have public class MyUISpecAdapter implements UISpecAdapter { private Window window; public...
Hi, ... That's strange, what you are doing seems to be exactly what we do in our Address Book example (which is not yet published, but you can have a look at...
I've upgraded to 0.12 and switched to using UIspecTestCase.setAdapter(). And I'm still getting this issue. Is there way to turn on debugging for uispec4j? ... ...
Hi "davout_1805", ... No, there is no debugging mode for UISpec4J. What kind of information would you like to have? ... Then how do you display your...
... code I ... oops. Actually I make a call to setVisible(true) on a subclass of JFrame. I now see that setVisible() is a replacement for the deprecated show....
I'm using the Spring framework to wire up my controllers/views/models via a Spring Application Context. I wonder if the way I'm doing that is causing a...
Hi Nascif, ... We have had the same problem today, we can now investigate the issue in our own environment. I will come back to you as soon as we have a fix. ...
Hi Regis, Great new (in a odd kind of way! :-) I will hold on to the latest version and then and wait for the one with a fix for this problem. BTW, I had...
Just to reinforce the idea... I am writing tests that use a UI framework I do not control, and a lot of the components don't have the "name" property set. So...
Just for completeness, replacing okButton.click(); With MessageBoxInterceptor .init(okButton.triggerClick()) .select(MessageBoxInterceptor.YES); In my example...