30 lines
312 B
C++
30 lines
312 B
C++
/*
|
|
* TestSolenoid.cpp
|
|
*
|
|
* Created on: Aug 7, 2018
|
|
* Author: rhetenor
|
|
*/
|
|
|
|
|
|
|
|
#include "catch.hpp"
|
|
#include "fakeit.hpp"
|
|
|
|
#include "utilities/LoggerFactory.h"
|
|
|
|
|
|
// testing purposes
|
|
#define private public
|
|
|
|
#include "output/Solenoid.h"
|
|
|
|
using namespace output;
|
|
using namespace fakeit;
|
|
|
|
SCENARIO("")
|
|
{
|
|
|
|
}
|
|
|
|
|