I am looking for a Software test tool solution to automated Unit / Module / Integration Testing of Embedded Software (C, C++, Java). Does somebody have an idea about it? It will be nice if it’s open source. Thank you

link|improve this question
feedback

closed as not constructive by casperOne Feb 21 at 13:25

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

You'll typically want a unit testing framework for each. There are open source frameworks for C (Cunit), C++ (CppUnit) and Java (JUnit). You can easily find others.

You should also consider test coverage tools, to tell you what part of your code the unit tests don't cover. You'll likely need of of these for each of the 3 languages, too.

If you a set of test coverage tools that all have the same style (and thus learning curve), and whose output can be combined to provide test coverage for an application coded in all 3 lanuages, you can consider using my company's (Semantic Designs) test coverage tools. Idon't know of a another set of test coverage tools that can combine test coverage data from all 3 languages to provided a unified result.

link|improve this answer
feedback

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