views:

38

answers:

1

Hi, We were given an assignment to develop a prototype for a customer community. It was suggested PHP as the programming language. (but we're not supposed to actually code it, just a prototype with documentation is required)

I'm wondering what are the best practices/ tools used in Unit testing, Integration Testing and System testing for such a php app

Thanks

+3  A: 

In PHP, the big name in Unit Testing is arguably PHPUnit. Related questions:

As for the integration aspect, maybe this question will give you some pointers:

Pekka