-2

My situation is i will do the development of the client-side of the web application. It means i will develop all the GUI(HTML,CSS), and all the javascript code which will communicate with the server done by others.

My only respobsibility is testing the code of my side. BTW, this web application will just be used by at most 4 people at a time. So there is no need to do pressure testing.

The application will be a commercial product, so i hope the testing tooles are also validated to be commercial avaiable.

Any suggestion or recommoned test tool or method for my situation?

  • [Stack Overflow is not a Recommendation Engine](http://meta.stackexchange.com/a/128562/177538) – Joseph May 15 '12 at 03:26
  • As Joseph stated, this post is going to lead to an array of responses and doesn't allow for a "correct" answer. – sirmdawg May 15 '12 at 03:29
  • As others always say to me *"guide the OP"*. Try reading about [Software Testing](http://en.wikipedia.org/wiki/Software_testing) and see what fits best in your situation. Experience is the best teacher, so try them all out while you are at it. – Joseph May 15 '12 at 03:34

1 Answers1

0

Jasmine is good value. If you structure your script properly you can mock out that bits that call the server and just hand back whatever response you want. This means you can fully test your code without a server.

Programming Guy
  • 6,521
  • 9
  • 43
  • 54