Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I perform unit testing in Simulink, or preferably, Stateflow?

I'm a fan of agile software methods, including test driven development. I'm responsible for the development of safety critical control software and we're using Matlab/Simulink/Stateflow for the development of it. This toolset is selected because of the link with plant (hardware) models. (model-in-the-loop, hardware-in-the-loop)

I have found some links on Stackoverflow: Unit-testing framework for MATLAB: xunit, slunit and doctest.

  • Does anyone have experience in using those or different unit test frameworks?
  • How to link this to continuous integration systems (i.e. Hudson)?
share|improve this question

2 Answers

up vote 3 down vote accepted

Unit testing Simulink is not straightforward, unfortunately. Mathworks have the SystemTest. Alternatively, you can roll-your-own Simulink testing framework, which is the approach that we've followed and is not too difficult, but you may need to built test-harnesses programmatically.

In order to integrate with CI, you need to create a function/script that executes all the tests, then you can use the command-line parameters for MATLAB.exe to run a script on start-up. I'm not sure anyone has a good way of integrating the test reports with the CI software, though. Just look at the number of comments in Unit-testing framework for MATLAB.

share|improve this answer
Very true. Often Simulink models treated as monolithical blocks; also Mathworks yet my preferred approach is small, independently testable blocks which can be worked on in parallel by a team of people. Also, Mathworks tends to come up with yet another new tool (with independent license scheme, not seldomly required for all team members). Some of the best things in life come for free; I believe xUnit is one of them.....May be the Matlab/Simulink/Stateflow community is not yet ready for agile/test driven development. Thanks for introducing a bounty for this. – Adriaan Nov 21 '11 at 14:32

If your system is complex, you should decompose it using Model Reference and test each of these independently.

An other solution (more "old school") is to put your main blocks in a library and to create small models.

To test these submodels and especially those with a State Machine (Stateflow), the best is to create temporal test cases with the Signal builder block. You have a powerful function signalbuilder to interact with this block and load test cases. My method is to get for each case of each submodel an input file and an output file. Your outputs of the model are the "correct" output and the one from the blocks. The model is run with sim (no external inputs) and the 2 outputs are compared with a script the indicated which signal is different (and when).

You could use an existent system but I prefer to use my own to run each case (or some of them).

I don't have any public code for that but that's the way I use. I don't use a CIS so I can't answer the second part of your question.

share|improve this answer
This answer doesn't really help, but looks like it's going to get the bounty, unless someone comes up with something better. – Nzbuu Oct 26 '11 at 17:34
I've done this, for the purpose of version management using SVN. For tests, I foresee big issues. Especially, since a small change will require compilation of a new "correct" output. – Adriaan Nov 21 '11 at 14:33

protected by Community Oct 30 '12 at 16:40

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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