Re: Unit testing recommendations for JavaFX

2015-03-28 Thread Tom Eugelink
JFXtras uses TestFX (3), very pleasant, highly recommended. On 28-3-2015 09:13, Adam Granger wrote: Following migration to JavaFX I've been looking into a unit testing... Possible solutions - "home brew" - just code up a few basic methods like "find a node with given selector within given ti

Re: Packaging a JFX app in a gradle build system

2015-03-28 Thread Robert Krüger
thanks. On Sat, Mar 28, 2015 at 4:30 PM, Scott Palmer wrote: > I believe the bitbucket repo is the main page. At least the bintray page > points to it. > > Scott > > On Mar 28, 2015, at 11:10 AM, Robert Krüger wrote: > > Which repository is the master? Bitbucket or github? I just saw a posting

Re: Packaging a JFX app in a gradle build system

2015-03-28 Thread Scott Palmer
I believe the bitbucket repo is the main page. At least the bintray page points to it. Scott > On Mar 28, 2015, at 11:10 AM, Robert Krüger wrote: > > Which repository is the master? Bitbucket or github? I just saw a posting by > someone mentioning that it is also on github. > >> On Fri, Mar

Re: Packaging a JFX app in a gradle build system

2015-03-28 Thread Robert Krüger
Which repository is the master? Bitbucket or github? I just saw a posting by someone mentioning that it is also on github. On Fri, Mar 27, 2015 at 7:27 AM, Robert Krüger wrote: > On Fri, Mar 27, 2015 at 12:16 AM, Scott Palmer wrote: > >> I am successfully using the javafx gradle plugin to produ

Re: Canvas performance on Mac OS

2015-03-28 Thread Robert Krüger
I have filed this now: https://javafx-jira.kenai.com/browse/RT-40377 On Sat, Mar 28, 2015 at 11:06 AM, Robert Krüger wrote: > This is consistent with what I am observing. Is this something that Oracle > is aware of? Looking at Jira, I don't see that anyone is working on this: > > > https://jav

Re: Canvas performance on Mac OS

2015-03-28 Thread Robert Krüger
On Sat, Mar 28, 2015 at 11:22 AM, Chris Newland wrote: > Hi Robert, > > I've not filed a Jira yet as I was hoping to find time to investigate > thoroughly but when I saw your question I thought I'd better add my > findings. > > I believe the issue is in the ES2Pipeline as if I run with > -Dprism.

Re: Canvas performance on Mac OS

2015-03-28 Thread Chris Newland
Hi Robert, I've not filed a Jira yet as I was hoping to find time to investigate thoroughly but when I saw your question I thought I'd better add my findings. I believe the issue is in the ES2Pipeline as if I run with -Dprism.order=sw then strokePolygon outperforms the series of strokeLine comman

Re: Canvas performance on Mac OS

2015-03-28 Thread Robert Krüger
This is consistent with what I am observing. Is this something that Oracle is aware of? Looking at Jira, I don't see that anyone is working on this: https://javafx-jira.kenai.com/issues/?jql=status%20in%20(Open%2C%20%22In%20Progress%22%2C%20Reopened)%20AND%20labels%20in%20(macosx)%20%20AND%20label

Re: Unit testing recommendations for JavaFX

2015-03-28 Thread Matthieu BROUILLARD
Hi Adam, At AGFA Healthcare we have been using TestFX for more than a year and a half now. Regards, Matthieu On Sat, Mar 28, 2015 at 9:13 AM, Adam Granger wrote: > Following migration to JavaFX I've been looking into a unit testing... > Possible solutions > > - "home brew" - just code up a f

Unit testing recommendations for JavaFX

2015-03-28 Thread Adam Granger
Following migration to JavaFX I've been looking into a unit testing... Possible solutions - "home brew" - just code up a few basic methods like "find a node with given selector within given timeout", then build tests using those using JUnit / Mockito. Also used @Rule approach from http://stackove