Re: automated unit test generation

2013-09-28 Thread Paul Rubin
skunkwerk writes: > - how difficult/tedious is writing unit tests, and why? The important thing is to write the tests at the same time as the code. If you do that, it's not too bad. It means the code is then organized around the tests and vice versa. Keeping tests in sync with changes to code c

automated unit test generation

2013-09-28 Thread skunkwerk
Hi, I've been working on an open source project to auto-generate unit tests for web apps based on traces collected from the web server and static code analysis. I've got an alpha version online at www.splintera.com, and the source is at https://github.com/splintera/python-django-client. I'd