![]() |
PhoenixMock
1.8.7
Tools to split/merge/print mock used in Phoenix
|
#include "phoenix_mock.h"
Go to the source code of this file.
Functions | |
void | concatenateVecMessage (std::vector< std::vector< char > > &vecOutput, const std::vector< std::vector< char > > vecInput) |
Concatenate vector of message into an other one. More... | |
void | splitVecMessage (std::vector< std::vector< char > > &vecOutput, const std::vector< std::vector< char > > vecInput, size_t offsetPart, size_t sizePart) |
Split a vector of messages into an other. More... | |
void concatenateVecMessage | ( | std::vector< std::vector< char > > & | vecOutput, |
const std::vector< std::vector< char > > | vecInput | ||
) |
Concatenate vector of message into an other one.
[out] | vecOutput | : vector of output message |
vecInput | : vector to be concatenated into vecOutput |
Definition at line 13 of file phoenix_mock.cpp.
Referenced by mergeMock().
void splitVecMessage | ( | std::vector< std::vector< char > > & | vecOutput, |
const std::vector< std::vector< char > > | vecInput, | ||
size_t | offsetPart, | ||
size_t | sizePart | ||
) |
Split a vector of messages into an other.
[out] | vecOutput | : output vector of messages |
vecInput | : input vector of messages | |
offsetPart | : offset of the first message to be extracted in a split mock | |
sizePart | : size of each split part (number of messages in each part to be split) |
Definition at line 26 of file phoenix_mock.cpp.
Referenced by splitMock().