Information about built-in software testing tools

I am looking for a software testing solution for automation testing of modules / modules / integration of embedded software (C, C ++, Java). Does anyone have an idea about this? It will be good if its open source.

+4
source share
1 answer

Usually you need a single testing platform for each. There are open source frameworks for C ( Cunit ), C ++ ( CppUnit ) and Java ( JUnit ). You can easily find others.

You should also consider coverage testing tools to tell you how much of your code unit tests do not cover. You will probably need them for each of the three languages.

If you have a set of testing tools that have the same style (and therefore a learning curve), and whose output can be combined to provide test coverage for an application encoded in all 3 lanuages, you can consider using my company (Semantic projects) testing tools . I don’t know of another set of testing tools that can combine test coverage data from all three languages ​​and provide a single result.

+1
source

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


All Articles