forked from rusefi/rusefi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmocks.cpp
37 lines (25 loc) · 1.06 KB
/
mocks.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "pch.h"
// Constructors/destructors for all mocks live here. If they only exist
// in the header (ie, implicitely defined), then that code has to be generated
// in every cpp file, instead of generating them only once, which we do here.
// See https://github.com/google/googletest/blob/master/docs/gmock_cook_book.md#making-the-compilation-faster
MockEtb::MockEtb() { }
MockEtb::~MockEtb() { }
MockMotor::MockMotor() { }
MockMotor::~MockMotor() { }
MockVp3d::MockVp3d() { }
MockVp3d::~MockVp3d() { }
MockPwm::MockPwm() { }
MockPwm::~MockPwm() { }
MockOutputPin::MockOutputPin() { }
MockOutputPin::~MockOutputPin() { }
MockExecutor::MockExecutor() { }
MockExecutor::~MockExecutor() { }
MockAirmass::MockAirmass() : AirmassVeModelBase(veTable) { }
MockAirmass::~MockAirmass() { }
MockInjectorModel2::MockInjectorModel2() { }
MockInjectorModel2::~MockInjectorModel2() { }
MockStepperHardware::MockStepperHardware() { }
MockStepperHardware::~MockStepperHardware() { }
MockTsChannel::MockTsChannel() : TsChannelBase("mock") { }
MockTsChannel::~MockTsChannel() { }