Peter
Peter

Reputation: 1669

Eclipse Add-on for unit testing in C

I know there is a Eclipse add-on for junit testing available. That bring up a question, is there also a tool for C unit testing available?

Upvotes: 5

Views: 7214

Answers (2)

mikeyGlitz
mikeyGlitz

Reputation: 433

After looking at the accompanying documentation and the setting configurations in the actual C/C++ testing plugin, it would appear that the CDT Testing tools only support C++ compatible frameworks:

  • boost
  • google
  • QT

There's no built-in support for a tool like CUnit. I would advise switching over to another IDE like NetBeans.

Upvotes: -1

greydet
greydet

Reputation: 5539

The last Eclipse CDT release (juno) now has built-in support for C/C++ unit testing framework integration.

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

Upvotes: 2

Related Questions