eggyolk13
eggyolk13

Reputation: 79

unit testing framework for C without installation?

I'm using Eclipse CDT for a C project.

I found out most of the frameworks require installation to use.

I need one framework that doesn't require installation and just need to include the .h files or/and .c files so that I can use the framework anywhere.

The MinUnit is very cool but it's tool simple. I can use the MinUnit If there's a plugin like Junit to generate the test function stubs for me.

Is there any Eclipse CDT plugin to generate test function stubs like Junit did?

Thank you!

Upvotes: 2

Views: 335

Answers (1)

littleadv
littleadv

Reputation: 20272

What about CUnit? When I used it - I just added the files as a sub-project to my development tree.

Upvotes: 1

Related Questions