diff -r 3406c99bc375 -r 07b41fa8d1dd stif/stif_plat/inc/StifUnitUtils.inl --- a/stif/stif_plat/inc/StifUnitUtils.inl Thu Jul 15 20:25:38 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,95 +0,0 @@ -/* -* 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: -* -*/ - -template -inline TBool AssertEquals(const T& aExpected, const T& aActual) -/** - * AssertEquals - * - * @prototype - * @test - * - * @param aExpected - Expected result - * @param aActual - Actual result - * @return - True if equal - */ - { - if( aExpected==aActual ) - { - return ETrue; - } - return EFalse; - } - -template -inline TBool AssertNull(const T* aPtr) -/** - * AssertNull - * - * @prototype - * @test - * - * @param aPtr - Pointer - * @return - True if NULL - */ - { - if( aPtr==NULL ) - { - return ETrue; - } - return EFalse; - } - -template -inline TBool AssertSame(const T* aExpectedPtr, const T* aActualPtr) -/** - * AssertSame - * - * @prototype - * @test - * - * @param aExpectedPtr - Expected pointer - * @param aActualPtr - Actual pointer - * @return - True if equal - */ - { - if( aExpectedPtr==aActualPtr ) - { - return ETrue; - } - return EFalse; - } - -inline TBool AssertTrue(const TBool& aCondition) -/** - * AssertTrue - * - * @prototype - * @test - * - * @param aCondition - Condition - * @return - True if aCondition is true - */ - { - if( !aCondition ) - { - return EFalse; - } - return ETrue; - } - -// End of File