Corrected order of access specifiers in MockCommand class (#436)

This commit is contained in:
Tyler Veness
2017-01-02 00:44:35 -08:00
committed by Peter Johnson
parent 64eab1f7b3
commit 4b6dc9583a
2 changed files with 21 additions and 21 deletions

View File

@@ -18,6 +18,12 @@ MockCommand::MockCommand() {
m_interruptedCount = 0;
}
bool MockCommand::HasInitialized() { return GetInitializeCount() > 0; }
bool MockCommand::HasEnd() { return GetEndCount() > 0; }
bool MockCommand::HasInterrupted() { return GetInterruptedCount() > 0; }
void MockCommand::Initialize() { ++m_initializeCount; }
void MockCommand::Execute() { ++m_executeCount; }
@@ -30,9 +36,3 @@ bool MockCommand::IsFinished() {
void MockCommand::End() { ++m_endCount; }
void MockCommand::Interrupted() { ++m_interruptedCount; }
bool MockCommand::HasInitialized() { return GetInitializeCount() > 0; }
bool MockCommand::HasEnd() { return GetEndCount() > 0; }
bool MockCommand::HasInterrupted() { return GetInterruptedCount() > 0; }