removed more windwows line endings

This commit is contained in:
Nick Bolton 2011-05-11 21:07:22 +00:00
parent 13c6c36107
commit 901d939267
1 changed files with 83 additions and 83 deletions

View File

@ -1,84 +1,84 @@
/* /*
* synergy -- mouse and keyboard sharing utility * synergy -- mouse and keyboard sharing utility
* Copyright (C) 2011 Chris Schoeneman, Nick Bolton, Sorin Sbarnea * Copyright (C) 2011 Chris Schoeneman, Nick Bolton, Sorin Sbarnea
* *
* This package is free software; you can redistribute it and/or * This package is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License * modify it under the terms of the GNU General Public License
* found in the file COPYING that should have accompanied this file. * found in the file COPYING that should have accompanied this file.
* *
* This package is distributed in the hope that it will be useful, * This package is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <gtest/gtest.h> #include <gtest/gtest.h>
#include "CKeyState.h" #include "CKeyState.h"
enum { enum {
kAKey = 30 kAKey = 30
}; };
class CKeyStateImpl : public CKeyState class CKeyStateImpl : public CKeyState
{ {
protected: protected:
virtual SInt32 pollActiveGroup() const virtual SInt32 pollActiveGroup() const
{ {
throw std::exception("The method or operation is not implemented."); throw std::exception("The method or operation is not implemented.");
} }
virtual KeyModifierMask pollActiveModifiers() const virtual KeyModifierMask pollActiveModifiers() const
{ {
throw std::exception("The method or operation is not implemented."); throw std::exception("The method or operation is not implemented.");
} }
virtual bool fakeCtrlAltDel() virtual bool fakeCtrlAltDel()
{ {
throw std::exception("The method or operation is not implemented."); throw std::exception("The method or operation is not implemented.");
} }
virtual void getKeyMap( CKeyMap& keyMap ) virtual void getKeyMap( CKeyMap& keyMap )
{ {
throw std::exception("The method or operation is not implemented."); throw std::exception("The method or operation is not implemented.");
} }
virtual void fakeKey( const Keystroke& keystroke ) virtual void fakeKey( const Keystroke& keystroke )
{ {
throw std::exception("The method or operation is not implemented."); throw std::exception("The method or operation is not implemented.");
} }
virtual void pollPressedKeys( KeyButtonSet& pressedKeys ) const virtual void pollPressedKeys( KeyButtonSet& pressedKeys ) const
{ {
throw std::exception("The method or operation is not implemented."); throw std::exception("The method or operation is not implemented.");
} }
}; };
TEST(CKeyStateTests, onKey_aKeyPressed_keyStateOne) TEST(CKeyStateTests, onKey_aKeyPressed_keyStateOne)
{ {
CKeyStateImpl keyState; CKeyStateImpl keyState;
keyState.onKey(kAKey, true, KeyModifierAlt); keyState.onKey(kAKey, true, KeyModifierAlt);
EXPECT_EQ(1, keyState.getKeyState(kAKey)); EXPECT_EQ(1, keyState.getKeyState(kAKey));
} }
TEST(CKeyStateTests, onKey_validButtonUp_keyStateZero) TEST(CKeyStateTests, onKey_validButtonUp_keyStateZero)
{ {
CKeyStateImpl keyState; CKeyStateImpl keyState;
keyState.onKey(0, true, KeyModifierAlt); keyState.onKey(0, true, KeyModifierAlt);
EXPECT_EQ(0, keyState.getKeyState(0)); EXPECT_EQ(0, keyState.getKeyState(0));
} }
TEST(CKeyStateTests, onKey_bogusButtonDown_keyStateZero) TEST(CKeyStateTests, onKey_bogusButtonDown_keyStateZero)
{ {
CKeyStateImpl keyState; CKeyStateImpl keyState;
keyState.onKey(0, true, KeyModifierAlt); keyState.onKey(0, true, KeyModifierAlt);
EXPECT_EQ(0, keyState.getKeyState(0)); EXPECT_EQ(0, keyState.getKeyState(0));
} }