What is your recommendation for C-testing modules?

What is your recommendation for the C-module testing. The structure should be as portable as possible.

If possible, I'm looking for something similar (in an approach) to Java Junit.

+4
source share
4 answers

You can also watch ATF ( http://code.google.com/p/kyua/wiki/ATF ), which is very portable and easy to use.

For example, it is used as part of the automatic regression testing of the netbsd network. It provides both C and C ++ interfaces.

+2
source

Personally, I use CuTest with a few changes. It is simple but very good for many needs.

+3
source

Please check the link below. This may be helpful.

http://code.google.com/p/test-dept/wiki/TestDept

+2
source

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


All Articles