1

I have made an application by cakephp.Now I want to test it efficiency.Can any body suggest me which one is the best application for testing php application?JMeter is it the best?

Alimon Karim
  • 4,354
  • 10
  • 43
  • 68
  • Have look at [PHP info](http://stackoverflow.com/tags/php/info),under **Quality Assurance Tools** section. – Rikesh Dec 30 '13 at 09:39

1 Answers1

2

Depends upon what kind of testing you want to carry on.

If you are considering UI testing consider Selenium IDE

http://www.seleniumhq.org/projects/ide/

If you are considering testing your php code consider PHPUnit

http://phpunit.de/manual/3.7/en/

If you are planning load testing consider Jmeter

http://jmeter.apache.org/

Or

http://gatling-tool.org/

Also See this. Performing a Stress Test on Web Application?

Community
  • 1
  • 1
chanchal118
  • 3,551
  • 2
  • 26
  • 52
  • I need load testing.Thanks for your valuable answers. – Alimon Karim Dec 30 '13 at 09:35
  • @MarkBaker You can edit the answer describing some key features of `gatling` if you feel so. – chanchal118 Dec 30 '13 at 10:50
  • An answer detailing all testing tools could get quite long, there's also tools such as Behat and Codeception for application testing; but as OP commented specifically about load testing in his comment on your answer, I just added it as another comment – Mark Baker Dec 30 '13 at 10:54