Re: [Lift] Fake Data Driven Development

2009-12-13 Thread Alex Boisvert
ScalaCheck has a nice API for generating data where you can plug your own generators. http://code.google.com/p/scalacheck/wiki/UserGuide It doesn't directly generate data to the database, XML, or any other specific format but you can use it to feed data into

Re: [Lift] Fake Data Driven Development

2009-12-13 Thread Indrajit Raychaudhuri
Hi Ngoc, Will this work for you? http://databene.org/databene-benerator http://databene.org/maven-benerator-plugin Admittedly, faker is simpler to setup compared to benerator however. Cheers, Indrajit On 13/12/09 4:20 PM, ngocdaothanh wrote: > Hi, > > I want to ask if there is a Scala or Java

Re: [Lift] Fake Data Driven Development

2009-12-13 Thread Timothy Perrett
It might be worth just asking this on the scala-user list over at EPFL... im not aware of anything, but you'll be talking to a broader Scala audience there. Cheers, Tim On 13 Dec 2009, at 10:50, ngocdaothanh wrote: > Hi, > > I want to ask if there is a Scala or Java library to auto-generate >

[Lift] Fake Data Driven Development

2009-12-13 Thread ngocdaothanh
Hi, I want to ask if there is a Scala or Java library to auto-generate fake data like this: http://faker.rubyforge.org/ I searched but could not find one. A library like this helps development a lot. For web projects I have a development method which I call Fake Data Driven Development: 1. Defin