Eclipse Add-on for Unit Testing in C

I know that there is an Eclipse add-on for testing junit. This begs the question, is there also a tool for testing C modules?

+4
source share
2 answers

The latest version of Eclipse CDT (juno) now has built-in support for integrating C / C ++ module testing modules.

See the next release note for more information.
This feature was originally developed here.

+1
source

Having looked at the accompanying documentation and configuration settings in a real C / C ++ testing plugin, it turned out that the CDT testing tools only support C ++ compatible frameworks:

  • booster
  • Google
  • QT

There is no native support for a tool like CUnit. I would suggest switching to another IDE, such as NetBeans.

-1
source

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


All Articles