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

I'd like to be able to unit test my Arduino code. Ideally, I would be able to run any tests without having to upload the code to the Arduino. What tools or libraries can help me with this?

There is an Arduino emulator in development which could be useful, but it doesn't yet seem to be ready for use.

AVR Studio from Atmel contains a chip simulator which could be useful, but I can't see how I would use it in conjunction with the Arduino IDE.

share|improve this question
There is another thread on this question from 2011 at arduino.cc/forum/index.php?action=printpage;topic=54356.0 – Jakob Jan 8 '12 at 19:58
Thanks @Jakob. An Arduino simulator referenced in that thread (with other potentially useful links at the bottom of the page): arduino.com.au/Simulator-for-Arduino.html – Matthew Murdoch Jan 9 '12 at 12:30
Unfortunately its only for Windows, I'd like to see a way to simply compile and run Arduino code from command line without any closed source or hardware dependencies. – Jakob Jan 12 '12 at 11:55

14 Answers

up vote 26 down vote accepted

In the absence of any pre-existing unit test frameworks for Arduino, I have created ArduinoUnit. Here's a simple Arduino sketch demonstrating its use:

#include <ArduinoUnit.h>

// Create test suite
TestSuite suite;

void setup() {
    Serial.begin(9600);    
}

// Create a test called 'addition' in the test suite
test(addition) {
    assertEquals(3, 1 + 2);
}

void loop() {
    // Run test suite, printing results to the serial port
    suite.run();
}
share|improve this answer
2  
The tests seem to run only on the arduino, so you cannot execute them automatically on your development machine. The basic idea of unit tests is to run them automatically, so the current design seems to be more a debugging tool but no real unit testing framework. – Jakob Jan 8 '12 at 19:52
1  
You're right. To be able to run these on a PC would, in addition, require either an Arduino or AVR emulator. There is no real hardware abstraction layer in the Arduino libraries (at the moment) and the AVR emulators when I looked were all still in development. If things have moved on now then in principle this could be done. – Matthew Murdoch Jan 9 '12 at 12:25
@MatthewMurdoch I think this is a great idea. I know I'd be interested in something like this once a proper AVR emulator is out. – gotnull Feb 9 '12 at 7:36

I have considerable success unit testing my PIC code by abstracting out the hardware access and mocking it in my tests.

For example, I abstract PORTA with

#define SetPortA(v) {PORTA = v;}

Then SetPortA can easily be mocked, without adding overhead code in the PIC version.

Once the hardware abstraction has been tested a while I soon find that generally code goes from the test rig to the PIC and works first time.

Update:

I use a #include seam for the unit code, #including the unit code in a C++ file for the test rig, and a C file for the target code.

As an example I want to multiplex four 7 segment displays, one port driving the segments and a second selecting the display. The display code interfaces with the displays via SetSegmentData(char) and SetDisplay(char). I can mock these in my C++ test rig and check that I get the data I expect. For the target I use #define so that I get a direct assignment without the overhead of a function call

#define SetSegmentData(x) {PORTA = x;}
share|improve this answer
I can see in principle how I can use the preprocessor 'seam' for unit testing. However I'm not sure how I can do this without having an emulator on which to run the tests or an avr-gcc compatible compiler which outputs (in my case) Windows binaries... – Matthew Murdoch Apr 23 '09 at 21:24
Thanks for the update. Do you execute the unit tests on the PIC or on your PC? – Matthew Murdoch Apr 24 '09 at 10:18
The unit tests are run on a Mac using Xcode. To run them on the Pic probably would need an emulator of some kind. Abstracting it so it runs on the Mac makes switching processors a great deal easieer – David Sykes Apr 24 '09 at 11:26
The Arduino environment uses the avr-gcc compiler which has some idiosyncrasies which mean that compiling with gcc (or other C++ compiler) and running on a PC may not mean that the code will also compile on avr-gcc. – Matthew Murdoch Sep 1 '09 at 10:08
What kind of difference are you talking about? Are they things that can't be handled with some preprocessor directives? – Joe Mar 15 '10 at 20:35

It seems that emulino would do the job perfectly.

share|improve this answer
+1 - Nice link, thanks. – Matthew Murdoch Nov 21 '09 at 10:57

simavr is an AVR simulator using avr-gcc.

It already supports a few ATTiny and ATMega microcontrollers, and - according to the author - it's easy to add some more.

In the examples lies simduino, an Arduino emulator. It supports running the Arduino bootloader and can be programmed with avrdude through Socat (a modified Netcat).

share|improve this answer
1  
+1 - Another great link - thank you. – Matthew Murdoch Feb 2 '10 at 12:56
I've been looking for this! – noah1989 Dec 9 '11 at 13:34

I am not aware of any platform which can test Arduino code.

However, there is the Fritzing platform, which you can use to model the hardware and later on export PCB diagrams and stuff.

Worth checking.

share|improve this answer

Keep hardware-specific code separate or abstracted away from the rest so you can test and debug that bigger "rest" on any platform for which you have good tools and with which you're familiar most.

Basically, try to build as much of the final code from as many known-to-work building blocks as possible. The remaining hardware-specific work will then be much easier and faster. You may finish it by using existing emulators and/or emulating devices on your own. And then, of course, you'll need to test the real thing somehow. Depending on circumstances, that may or may not be very well automatable (i.e. who or what will press buttons and provide other inputs? who or what will observe and interpret various indicators and outputs?).

share|improve this answer

James W. Grenning writes great books and this one is about unit testing embedded C code Test Driven Development for Embedded C.

share|improve this answer
+1 - Thanks for the link. – Matthew Murdoch Dec 8 '10 at 10:37

Maybe this is too obvious, but I haven't seen anyone mention it. Why not just use CppUnit (or whatever framework you like) and design your app in such a way that its components don't necessarily have to be run on the microcontroller to be tested? You could mock up any of the contact points between your app and the arduino.

After all, the point of unit testing is not to test the arduino or the arduino library, but to test a specific unit of your own code. You should assume correct (or at least consistently incorrect) behavior by external factors when unit testing. Other kinds of testing can be implemented that involve the microcontroller or a simulator/emulator, but for unit testing, you should just use a conventional framework.

share|improve this answer

Here's two resources for unit testing embedded code (although neither can be used directly with Arduino sketches).

share|improve this answer

We are using Arduino boards for data acquisition in a large scientific experiment. Subsequently, we have to support several Arduino boards with different implementations. I wrote Python utilities to dynamically load Arduino hex images during unit testing. The code found on the link below supports Windows and Mac OS X via a configuration file. To find out where your hex images are placed by the Arduino IDE, hit the shift key before you hit the build (play) button. Hit the shift key while hitting upload to find out where your avrdude (command line upload utility) is located on your system / version of Arduino. Alternatively, you can look at the included configuration files and use your install location (currently on Arduino 0020).

http://github.com/toddstavish/Python-Arduino-Unit-Testing

share|improve this answer
+1 Great stuff! Do you have any information on how you did your unit testing once the images were uploaded? – Matthew Murdoch Oct 11 '10 at 11:44
We used nosetests to run our unit tests on the python side. The setup for each tests loads the correct hex image for that test. We start small and then work into more comprehensive testing. Make sure serial communication is working, make sure serial integration to the UI is working, check serial to DB integration, etc. The analog_read_speed pde and py show the basics of this (see github link above). Eventually, we will open source the entire project, so please stay tuned. :) – toddstavish Oct 11 '10 at 21:28

You can unit test in Python with my project, PySimAVR. Arscons is used for building and simavr for simulation.

Example:

from pysimavr.sim import ArduinoSim    
def test_atmega88():
    mcu = 'atmega88'
    snippet = 'Serial.print("hello");'

    output = ArduinoSim(snippet=snippet, mcu=mcu, timespan=0.01).get_serial()
    assert output == 'hello'

Start test:

$ nosetests pysimavr/examples/test_example.py
pysimavr.examples.test_example.test_atmega88 ... ok
share|improve this answer

There is a project called ncore, which provides native core for Arduino. And allows you to write tests for Arduino code.

From the project description

The native core allows you to compile and run Arduino sketches on the PC, generally with no modification. It provides native versions of standard Arduino functions, and a command-line interepreter to give inputs to your sketch that would normally come from the hardware itself.

Also on the "what do I need to use it" section

If you want to build the tests, you'll need cxxtest from http://cxxtest.tigris.org. NCORE has been tested with cxxtest 3.10.1.

share|improve this answer
+ 1. Great link! Thanks! – Matthew Murdoch Aug 11 '12 at 11:36

This program allows automated running of several Arduino unit tests. The testing process is started on the PC but the tests run on the actual Arduino hardware. One set of unit tests is typically used to test one Arduino library. (this

Arduino Forum: http://arduino.cc/forum/index.php?topic=140027.0

GitHub project page: http://jeroendoggen.github.com/Arduino-TestSuite

Page in the Python Package Index: http://pypi.python.org/pypi/arduino_testsuite

The unit tests are written with the "Arduino Unit Testing Library": http://code.google.com/p/arduinounit

The following steps are performed for each set of unit tests:

  • Read the config file to find out which tests to run
  • The script compiles and uploads an Arduino sketch that contains the unit testing code.
  • The unit tests are run on the Arduino board.
  • The results of the test are printed over the serial port and analyzed by the Python script.
  • The script starts the next test, repeating the above steps for all test that are requested in the configuration file.
  • The script prints a summary showing an overview of all the failed/passed tests in the complete testsuite.
share|improve this answer
+1. Thanks for the links. This looks like it could grow into something really powerful! – Matthew Murdoch Jan 12 at 20:42

You can use emulare — you can drag and drop a microcontroller on a diagram and run your code in Eclipse. The documentation on the website tells you how to set it up.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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