diff -r 2c7f27287390 -r 053c6c7c14f3 homescreensrv_plat/hs_settings_api/tsrc/inc/mt_map.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/homescreensrv_plat/hs_settings_api/tsrc/inc/mt_map.h Thu Aug 19 10:13:44 2010 +0300 @@ -0,0 +1,123 @@ +/* +* 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: EUnit test for homescreen settings API, main suite +* +*/ + +#ifndef __MT_Map_H__ +#define __MT_Map_H__ + +// External includes +#include +#include + +// Internal includes +#include + +// Forward declarations +class HSPluginSettingsIf::CItemMap; +class HSPluginSettingsIf::CPropertyMap; + +#ifndef NONSHARABLE_CLASS + #define NONSHARABLE_CLASS(x) class x +#endif + +// Class definition +/** + * + * Homescreen settings API test class. + * + */ +NONSHARABLE_CLASS( MT_Map ) : public CEUnitTestSuiteClass + { +public: + // Constructors and destructors + + /** + * Two phase construction + */ + static MT_Map* NewL(); + + /** + * Two phase construction + */ + static MT_Map* NewLC(); + + /** + * Destructor + */ + ~MT_Map(); + +private: + + /** + * Private constructor + */ + MT_Map(); + + /** + * Leaving constructor + */ + void ConstructL(); + +public: + +private: + + /** + * Setup the test + */ + void SetupL(); + + /** + * Clean after the test + */ + void Teardown(); + void TeardownPropertyMap(); + + /** + * Test set and get the item ID + */ + void TestItemIdL(); + + /** + * Test set and get the item name + */ + void TestItemNameL(); + + /** + * Test set and get the property name + */ + void TestPropertyNameL(); + + /** + * Test set and get the property value + */ + void TestPropertyValueL(); + + /** + * Test set and get the property map + */ + void TestPropertyMapL(); + +private: + /** Test set */ + EUNIT_DECLARE_TEST_TABLE; + + HSPluginSettingsIf::CItemMap* iItemMap; + HSPluginSettingsIf::CPropertyMap* iPropertyMap; + RPointerArray< HSPluginSettingsIf::CPropertyMap > iProperties; + }; + +#endif // __MT_Map_H__