diff -r e686773b3f54 -r 0ba2181d7c28 phonebookengines/contactsmodel/tsrc/cntplsql/src/t_cpcskeymap.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/phonebookengines/contactsmodel/tsrc/cntplsql/src/t_cpcskeymap.h Fri Mar 19 09:27:18 2010 +0200 @@ -0,0 +1,76 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: Unit test class for character to key mappings +* +*/ + +#ifndef __UT_CPCSKEYMAP_H__ +#define __UT_CPCSKEYMAP_H__ + +// EXTERNAL INCLUDES +#include +#include + +// FORWARD DECLARATIONS +class CPcsKeyMap; + +// CONSTANTS + +// CLASS DEFINITION +/** + * Tester class for CPcsKeyMap. + */ +NONSHARABLE_CLASS( UT_CPcsKeyMap ): public CEUnitTestSuiteClass + { + public: // Constructors and destructors + + /** + * Two phase construction + */ + static UT_CPcsKeyMap* NewL(); + static UT_CPcsKeyMap* NewLC(); + + /** + * Destructor + */ + ~UT_CPcsKeyMap(); + + private: // Constructors + + UT_CPcsKeyMap(); + void ConstructL(); + + private: // Test case setup and teardown + + void SetupL(); + void Teardown(); + + private: // Test methods + + void UT_NewLL(); + void UT_GetNumericKeyStringL(); + void UT_GetNumericKeyStringSeparatorL(); + void UT_GetNumericKeyStringWithNumbersL(); + void UT_GetNumericKeyStringWithSpecialCharactersL(); + + private: // Data + + CPcsKeyMap* iKeyMap; + + EUNIT_DECLARE_TEST_TABLE; + }; + +#endif // __UT_CPCSKEYMAP_H__ + +// End of file