LRT13  1.0
 All Classes Namespaces Functions Variables Enumerations Enumerator
LEDUnitTest.h
1 #ifndef LED_TEST_H_
2 #define LED_TEST_H_
3 
4 #include <vxWorks.h>
5 #include <sysLib.h>
6 
7 #include "../UnitTests/UnitTest.h"
8 #include "DigitalOutput.h"
9 #include <timer.h>
10 
11 class LEDUnitTest : public UnitTest
12 {
13 public:
14  LEDUnitTest();
15  ~LEDUnitTest();
16 
17  void Run();
18 
19 private:
20  DigitalOutput* m_led;
21 };
22 
23 #endif