Reputation: 1669
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
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:
There's no built-in support for a tool like CUnit. I would advise switching over to another IDE like NetBeans.
Upvotes: -1
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