Test program to check various functionality in FixedLengthList (see http://mbed.org/users/johnb/code/FixedLengthList/ )

Dependencies:   FixedLengthList mbed

Test code for FixedLengthList class

Committer:
johnb
Date:
Wed Jan 29 23:01:16 2014 +0000
Revision:
3:5480dece8fa5
Parent:
0:12569365e1cf
Add tests for remove() method

Who changed what in which revision?

UserRevisionLine numberNew contents of line
johnb 0:12569365e1cf 1 #include "mbed.h"
johnb 0:12569365e1cf 2 #include "FixedLengthList.hpp"
johnb 0:12569365e1cf 3
johnb 0:12569365e1cf 4 #define LIST_LEN (20U)
johnb 0:12569365e1cf 5
johnb 0:12569365e1cf 6 FixedLengthList<int, LIST_LEN > list4;