From 901d93926771c123658f9c36b5e1b8de8e43137b Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Wed, 11 May 2011 21:07:22 +0000 Subject: [PATCH] removed more windwows line endings --- src/test/unittests/synergy/CKeyStateTests.cpp | 166 +++++++++--------- 1 file changed, 83 insertions(+), 83 deletions(-) diff --git a/src/test/unittests/synergy/CKeyStateTests.cpp b/src/test/unittests/synergy/CKeyStateTests.cpp index 6110bba9..231d5921 100644 --- a/src/test/unittests/synergy/CKeyStateTests.cpp +++ b/src/test/unittests/synergy/CKeyStateTests.cpp @@ -1,84 +1,84 @@ -/* - * synergy -- mouse and keyboard sharing utility - * Copyright (C) 2011 Chris Schoeneman, Nick Bolton, Sorin Sbarnea - * - * This package is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * found in the file COPYING that should have accompanied this file. - * - * This package is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#include -#include "CKeyState.h" - -enum { - kAKey = 30 -}; - -class CKeyStateImpl : public CKeyState +/* + * synergy -- mouse and keyboard sharing utility + * Copyright (C) 2011 Chris Schoeneman, Nick Bolton, Sorin Sbarnea + * + * This package is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * found in the file COPYING that should have accompanied this file. + * + * This package is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include "CKeyState.h" + +enum { + kAKey = 30 +}; + +class CKeyStateImpl : public CKeyState { -protected: - virtual SInt32 pollActiveGroup() const - { - throw std::exception("The method or operation is not implemented."); - } - - virtual KeyModifierMask pollActiveModifiers() const - { - throw std::exception("The method or operation is not implemented."); - } - - virtual bool fakeCtrlAltDel() - { - throw std::exception("The method or operation is not implemented."); - } - - virtual void getKeyMap( CKeyMap& keyMap ) - { - throw std::exception("The method or operation is not implemented."); - } - - virtual void fakeKey( const Keystroke& keystroke ) - { - throw std::exception("The method or operation is not implemented."); - } - - virtual void pollPressedKeys( KeyButtonSet& pressedKeys ) const - { - throw std::exception("The method or operation is not implemented."); - } -}; - -TEST(CKeyStateTests, onKey_aKeyPressed_keyStateOne) -{ - CKeyStateImpl keyState; - - keyState.onKey(kAKey, true, KeyModifierAlt); - - EXPECT_EQ(1, keyState.getKeyState(kAKey)); -} - -TEST(CKeyStateTests, onKey_validButtonUp_keyStateZero) -{ - CKeyStateImpl keyState; - - keyState.onKey(0, true, KeyModifierAlt); - - EXPECT_EQ(0, keyState.getKeyState(0)); -} - -TEST(CKeyStateTests, onKey_bogusButtonDown_keyStateZero) -{ - CKeyStateImpl keyState; - - keyState.onKey(0, true, KeyModifierAlt); - - EXPECT_EQ(0, keyState.getKeyState(0)); -} +protected: + virtual SInt32 pollActiveGroup() const + { + throw std::exception("The method or operation is not implemented."); + } + + virtual KeyModifierMask pollActiveModifiers() const + { + throw std::exception("The method or operation is not implemented."); + } + + virtual bool fakeCtrlAltDel() + { + throw std::exception("The method or operation is not implemented."); + } + + virtual void getKeyMap( CKeyMap& keyMap ) + { + throw std::exception("The method or operation is not implemented."); + } + + virtual void fakeKey( const Keystroke& keystroke ) + { + throw std::exception("The method or operation is not implemented."); + } + + virtual void pollPressedKeys( KeyButtonSet& pressedKeys ) const + { + throw std::exception("The method or operation is not implemented."); + } +}; + +TEST(CKeyStateTests, onKey_aKeyPressed_keyStateOne) +{ + CKeyStateImpl keyState; + + keyState.onKey(kAKey, true, KeyModifierAlt); + + EXPECT_EQ(1, keyState.getKeyState(kAKey)); +} + +TEST(CKeyStateTests, onKey_validButtonUp_keyStateZero) +{ + CKeyStateImpl keyState; + + keyState.onKey(0, true, KeyModifierAlt); + + EXPECT_EQ(0, keyState.getKeyState(0)); +} + +TEST(CKeyStateTests, onKey_bogusButtonDown_keyStateZero) +{ + CKeyStateImpl keyState; + + keyState.onKey(0, true, KeyModifierAlt); + + EXPECT_EQ(0, keyState.getKeyState(0)); +}