Re: [The Java Posse] Android Unit testing

2010-11-05 Thread Kevin Wright
On 5 November 2010 07:58, Ricky Clarkson wrote: > But the build is written in Scala, right, or can that be written in > any JVM language? The project definition file is written using a Scala DSL (currently 2.7.7), and any plugins are also written in Scala. (note: plugins *could* be written in J

Re: [The Java Posse] Android Unit testing

2010-11-05 Thread Ricky Clarkson
But the build is written in Scala, right, or can that be written in any JVM language? On Thu, Nov 4, 2010 at 9:58 PM, Kevin Wright wrote: > SBT is another build frameword with a good android plugin. It also > handles proguard compression for you. > > (and yes, it can be used for raw Java, it's no

Re: [The Java Posse] Android Unit testing

2010-11-04 Thread Kevin Wright
SBT is another build frameword with a good android plugin. It also handles proguard compression for you. (and yes, it can be used for raw Java, it's not exclusively a scala thing) On Thursday, November 4, 2010, Manfred Moser wrote: > For easier integration testing you should also look at Robotiu

Re: [The Java Posse] Android Unit testing

2010-11-04 Thread Dominic Mitchell
On Thu, Nov 4, 2010 at 9:53 AM, jazam wrote: > Hello all, > > I'm an android newbie so please be gentle with me:) > > I've been trying to right test code for my app. I've read and re-read > the android documentation a number of times. I can't work out how to > test service or content providers. I

Re: [The Java Posse] Android Unit testing

2010-11-04 Thread Manfred Moser
> On Thu, Nov 4, 2010 at 4:53 AM, jazam wrote: >> I've been trying to right test code for my app. I've read and re-read >> the android documentation a number of times. I can't work out how to >> test service or content providers. Is there any example source code >> anywhere, I can have a look? > >

Re: [The Java Posse] Android Unit testing

2010-11-04 Thread Patrick Forhan
On Thu, Nov 4, 2010 at 4:53 AM, jazam wrote: > I've been trying to right test code for my app. I've read and re-read > the android documentation a number of times. I can't work out how to > test service or content providers. Is there any example source code > anywhere, I can have a look? It is a

[The Java Posse] Android Unit testing

2010-11-04 Thread jazam
Hello all, I'm an android newbie so please be gentle with me:) I've been trying to right test code for my app. I've read and re-read the android documentation a number of times. I can't work out how to test service or content providers. Is there any example source code anywhere, I can have a look