parent
c3aba1b20b
commit
1418196af1
|
@ -24,7 +24,7 @@
|
|||
#include "common/stdset.h"
|
||||
#include "common/stdvector.h"
|
||||
|
||||
#ifdef TEST_ENV
|
||||
#ifdef BARRIER_TEST_ENV
|
||||
#include <gtest/gtest_prod.h>
|
||||
#endif
|
||||
|
||||
|
@ -329,7 +329,7 @@ public:
|
|||
//@}
|
||||
|
||||
private:
|
||||
#ifdef TEST_ENV
|
||||
#ifdef BARRIER_TEST_ENV
|
||||
FRIEND_TEST(KeyMapTests,
|
||||
findBestKey_requiredDown_matchExactFirstItem);
|
||||
FRIEND_TEST(KeyMapTests,
|
||||
|
|
|
@ -42,7 +42,7 @@ public:
|
|||
Screen(IPlatformScreen* platformScreen, IEventQueue* events);
|
||||
virtual ~Screen();
|
||||
|
||||
#ifdef TEST_ENV
|
||||
#ifdef BARRIER_TEST_ENV
|
||||
Screen() : m_mock(true) { }
|
||||
#endif
|
||||
|
||||
|
|
|
@ -59,7 +59,7 @@ public:
|
|||
// sending dragging information to server
|
||||
void sendDragInfo(UInt32 fileCount, const char* info, size_t size);
|
||||
|
||||
#ifdef TEST_ENV
|
||||
#ifdef BARRIER_TEST_ENV
|
||||
void handleDataForTest() { handleData(Event(), NULL); }
|
||||
#endif
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@ private:
|
|||
ClientList m_clients;
|
||||
mutable std::mutex m_clientsMutex;
|
||||
|
||||
#ifdef TEST_ENV
|
||||
#ifdef BARRIER_TEST_ENV
|
||||
public:
|
||||
IpcServer() :
|
||||
m_mock(true),
|
||||
|
|
|
@ -136,7 +136,7 @@ private:
|
|||
bool m_lock;
|
||||
};
|
||||
|
||||
#ifdef TEST_ENV
|
||||
#ifdef BARRIER_TEST_ENV
|
||||
public: // yuck
|
||||
#endif
|
||||
typedef std::vector<KeyModifierMask> KeyModifierMaskList;
|
||||
|
@ -169,7 +169,7 @@ private:
|
|||
// autorepeat state
|
||||
XKeyboardState m_keyboardState;
|
||||
|
||||
#ifdef TEST_ENV
|
||||
#ifdef BARRIER_TEST_ENV
|
||||
public:
|
||||
SInt32 group() const { return m_group; }
|
||||
void group(const SInt32& group) { m_group = group; }
|
||||
|
|
|
@ -174,7 +174,7 @@ public:
|
|||
Config(IEventQueue* events);
|
||||
virtual ~Config();
|
||||
|
||||
#ifdef TEST_ENV
|
||||
#ifdef BARRIER_TEST_ENV
|
||||
Config() : m_inputFilter(NULL) { }
|
||||
#endif
|
||||
|
||||
|
|
|
@ -333,7 +333,7 @@ public:
|
|||
InputFilter(const InputFilter&);
|
||||
virtual ~InputFilter();
|
||||
|
||||
#ifdef TEST_ENV
|
||||
#ifdef BARRIER_TEST_ENV
|
||||
InputFilter() : m_primaryClient(NULL) { }
|
||||
#endif
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ public:
|
|||
PrimaryClient(const std::string& name, barrier::Screen* screen);
|
||||
~PrimaryClient();
|
||||
|
||||
#ifdef TEST_ENV
|
||||
#ifdef BARRIER_TEST_ENV
|
||||
PrimaryClient() : BaseClientProxy("") { }
|
||||
#endif
|
||||
|
||||
|
|
|
@ -110,7 +110,7 @@ public:
|
|||
barrier::Screen* screen, IEventQueue* events, ServerArgs const& args);
|
||||
~Server();
|
||||
|
||||
#ifdef TEST_ENV
|
||||
#ifdef BARRIER_TEST_ENV
|
||||
Server() : m_mock(true), m_config(NULL) { }
|
||||
void setActive(BaseClientProxy* active) { m_active = active; }
|
||||
#endif
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
// TODO: fix, tests failing intermittently on mac.
|
||||
#ifndef WINAPI_CARBON
|
||||
|
||||
#define TEST_ENV
|
||||
#define BARRIER_TEST_ENV
|
||||
|
||||
#include "test/global/TestEventQueue.h"
|
||||
#include "ipc/IpcServer.h"
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
// TODO: fix, tests failing intermittently on mac.
|
||||
#ifndef WINAPI_CARBON
|
||||
|
||||
#define TEST_ENV
|
||||
#define BARRIER_TEST_ENV
|
||||
|
||||
#include "test/mock/server/MockConfig.h"
|
||||
#include "test/mock/server/MockPrimaryClient.h"
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#define TEST_ENV
|
||||
#define BARRIER_TEST_ENV
|
||||
|
||||
#include "test/mock/barrier/MockEventQueue.h"
|
||||
#include "test/mock/barrier/MockKeyMap.h"
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#define TEST_ENV
|
||||
#define BARRIER_TEST_ENV
|
||||
|
||||
#include "test/mock/barrier/MockKeyMap.h"
|
||||
#include "test/mock/barrier/MockEventQueue.h"
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#define TEST_ENV
|
||||
#define BARRIER_TEST_ENV
|
||||
|
||||
#include "barrier/App.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#define TEST_ENV
|
||||
#define BARRIER_TEST_ENV
|
||||
|
||||
#include "barrier/ArgParser.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#define TEST_ENV
|
||||
#define BARRIER_TEST_ENV
|
||||
|
||||
#include "barrier/Screen.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#define TEST_ENV
|
||||
#define BARRIER_TEST_ENV
|
||||
|
||||
#include "server/Config.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#define TEST_ENV
|
||||
#define BARRIER_TEST_ENV
|
||||
|
||||
#include "server/InputFilter.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#define TEST_ENV
|
||||
#define BARRIER_TEST_ENV
|
||||
|
||||
#include "server/PrimaryClient.h"
|
||||
#include "base/String.h"
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#define TEST_ENV
|
||||
#define BARRIER_TEST_ENV
|
||||
|
||||
#include "server/Server.h"
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#define TEST_ENV
|
||||
#define BARRIER_TEST_ENV
|
||||
|
||||
#include "barrier/KeyMap.h"
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#define TEST_ENV
|
||||
#define BARRIER_TEST_ENV
|
||||
|
||||
#include "test/mock/ipc/MockIpcServer.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue