diff options
author | Mattes D <github@xoft.cz> | 2016-03-13 19:34:56 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-06-18 13:12:08 +0200 |
commit | db17f585afc283a107b8fbec078e1d2d674e52b0 (patch) | |
tree | c5377aa39f2862a5ea220d3c0d7bf2166ab78540 /tests/CompositeChat/ClientHandle.cpp | |
parent | SelfTests: Moved ByteBuffer test to a separate project. (diff) | |
download | cuberite-db17f585afc283a107b8fbec078e1d2d674e52b0.tar cuberite-db17f585afc283a107b8fbec078e1d2d674e52b0.tar.gz cuberite-db17f585afc283a107b8fbec078e1d2d674e52b0.tar.bz2 cuberite-db17f585afc283a107b8fbec078e1d2d674e52b0.tar.lz cuberite-db17f585afc283a107b8fbec078e1d2d674e52b0.tar.xz cuberite-db17f585afc283a107b8fbec078e1d2d674e52b0.tar.zst cuberite-db17f585afc283a107b8fbec078e1d2d674e52b0.zip |
Diffstat (limited to '')
-rw-r--r-- | tests/CompositeChat/ClientHandle.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/CompositeChat/ClientHandle.cpp b/tests/CompositeChat/ClientHandle.cpp new file mode 100644 index 000000000..e66b2237e --- /dev/null +++ b/tests/CompositeChat/ClientHandle.cpp @@ -0,0 +1,20 @@ + +// ClientHandle.cpp + +// Mocks the cClientHandle class used by the tests + +#include "Globals.h" +#include "ClientHandle.h" + + + + + +AString cClientHandle::FormatMessageType(bool a_ShouldShowPrefixes, eMessageType a_MsgType, const AString & a_AdditionalData) +{ + return "<FormatMessageType mocked>"; +} + + + + |