vote up 9 vote down star
7

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. Are there any tools or libraries out there which can help me with this?

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

Update: 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.

flag

5 Answers

vote up 3 vote down

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.

link|flag
vote up 8 vote down

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;}
link|flag
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 at 21:24
Thanks for the update. Do you execute the unit tests on the PIC or on your PC? – Matthew Murdoch Apr 24 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 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 at 10:08
vote up 6 vote down check

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() {
}

// 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();
}
link|flag
vote up 1 vote down

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

link|flag
vote up 3 vote down

It seems that emulino would do the job perfectly.

link|flag
+1 - Nice link, thanks. – Matthew Murdoch Nov 21 at 10:57

Your Answer

Get an OpenID
or

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