Test Strategy Development

As part of the new work, I must develop and implement a complete testing strategy for a new company product. So far, all I really know about this is that it is written in C ++, uses a SQL database and has a web API that is used by a browser client written using GWT.

As far as I know, the strategy of the existing strategy does not exist, except for using Python scripts to test the web API.

I need to develop and implement a suitable strategy for testing units, systems, regression and production, preferably fully automated.
I am looking for good links for:

  • Develop a complete testing strategy.
  • Web API Testing.
  • Testing applications based on GWT.
  • C ++ code testing module.

In addition, any suitable tools will be appreciated.

+4
source share
4 answers

Testing computer software is a great book with nut-nuts for the whole testing process. In addition to the points you indicated, you will need to think about other types of testing (performance, security, localization, stress testing, to name a few) and how to manage the testing process; test plans, problem tracking, test data, test cases, in addition to the tools.

There are many, and you cannot do everything at once. I think a phased approach would be best when you identify gaps, weaknesses, and risks in the current process, prioritize them, and then set up a high-level plan to address them one by one.

The QA Testing & Test Tool Resources software is a good starting point for finding some tools that fit your process. StickyMinds is a good software testing website and people here at StackOverflow know their stuff for sure, so don't be afraid to ask.

Good luck :)

+2
source

You can find tons of great information on testing and developing your overall testing strategy on James Bach’s blog. In particular, by searching for tips on testing strategies .

James is a great resource for information on how to make testing great .

Good luck.

+2
source

As testing tools, you can use Selenium for web testing and CppUnit for C ++ unit testing.

0
source

There is a good conversation on the purpose of the test strategy .

0
source

Source: https://habr.com/ru/post/1304408/


All Articles