Is there any SW to generate unit tests in C and embedded applications? The reason I am asking is that my boss told me he heard from someone that "You need a tool to analyze the code and create 80% of all relevant testcases automatically, the remaining 20% you use all your time and focus on", else it would take "too much time".

I am very skeptic about this statement and can't see clearly what kind of tests that could be auto generated and if they would be any good at all.

I can, however, see that it would be possible to generate interface unit tests automatically for the API:s.

So can someone enlighten me on this issue?

link|improve this question

feedback

6 Answers

up vote 4 down vote accepted

Your boss has got the wrong end of the stick.

I know of no tools that will generate unit tests for you.

What he may be mistaking is code coverage and unit testing. While related they are in fact separate issues.

Code coverage will instrument your code and once finished running give you the low down on how much of your source was used in the run. This is useful when unit testing as it will effectively show you where you have tested and where you need to focus your work.

It is fairly easy to get the first two thirds of code covered but diminishing returns means to get near a magic 100% takes a lot of time and effort.

link|improve this answer
I just looked at Microsoft Pex. It seems to generate interface tests for C# code. Perhaps something similar for C could be a big advantage? – Henrik May 11 '10 at 12:22
Still looks like Pex needs to instrument your code to generate the test results. – graham.reeds May 11 '10 at 12:29
feedback

Googling "unit test generator" turns up a lot of things, but I do not know if they are any good, or if they'll suit your case.

It is not unit testing, but you can do some code checking with lint or related tools. See: http://www.lysator.liu.se/c/ten-commandments.html I think a current open source tool is splint http://www.splint.org/

Jon Bentley's books have some good discussion of the role of "scaffolding" code, including test scaffolds.

link|improve this answer
feedback

I recommend you API Sanity Autotest (LGPL) from ISPRAS and The Linux Foundation:

API Sanity Autotest is an automatic generator of basic unit tests for a shared C/C++ library API. It helps to quickly generate simple ("sanity" or "shallow"-quality) test cases for every function in an API using their signatures, data type definitions and relationships between functions straight from the library header files. Each test case contains a function call with reasonable (in most, but unfortunately not all, cases) input parameters. The quality of generated tests allows to check absence of critical errors in simple use cases ...

Unique features:

  • Automatic test data/input parameters generation (even for complex data types)
  • Modern specialized data types instead of usual fixtures/templates (more info)

Examples:

link|improve this answer
feedback

We use CANtata here where I work for generating unit tests / code coverage. Its decent, though I imagine it is a bit pricey.

link|improve this answer
feedback

We use IBM RTRT

http://www-01.ibm.com/software/awdtools/test/realtime/index.html

Although in our use case we don't use it to generate the tests, but I saw some possibilities to generate at least skeleton.

link|improve this answer
feedback

First of all, what do you mean by unit test and generate unit tests?

Do you mean generate a framework, a test harness or do you mean generate a test with data and data checks or assertions that actually calls your code. And, in the latter case, how is that test generated?

More fundamentally, why are you testing? Are you following a standard that requires a certain level of testing, or are you 'just' trying to reduce risk and cost in later stages of development? Or maybe you are building on an existing system and just want to make sure you do not break any existing functionality.

A previous answer mentioned Cantata, we have recently released a new version with a component called 'baseline testing'. This may be just what you are looking for. It will create, for C code, a set of unit tests, containing test cases that stand a good chance of fully exercising each of your source files. The tool achieves this by reading your source and producing a set of test that drive the execution down each path aiming to achieve your desired coverage target – 100% statement, decision or even MC/DC coverage. The intent is to 'baseline' your source code as part of the ongoing development of a legacy system, or to fill in coverage gaps after functional or maybe system testing.

See the Cantata++ webpage for more information (and free evaluations)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.