kerneltest/f32test/shostmassstorage/msman/test/ttestutils.h
changeset 0 a41df078684a
equal deleted inserted replaced
-1:000000000000 0:a41df078684a
       
     1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of the License "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 
       
    17 
       
    18 /**
       
    19  @file
       
    20  @internalComponent
       
    21 */
       
    22 
       
    23 #ifndef TTESTUTILS_H
       
    24 #define TTESTUTILS_H
       
    25 
       
    26 class TTestUtils
       
    27     {
       
    28 public:
       
    29     static void WaitForBusEventL();
       
    30     static TBool WaitForConnectionStateEventL();
       
    31     };
       
    32 
       
    33 
       
    34 class TTestTimer
       
    35     {
       
    36 public:
       
    37     TTestTimer();
       
    38     ~TTestTimer();
       
    39     void Start();
       
    40     void End();
       
    41 private:
       
    42     TTime iStart;
       
    43     TTime iEnd;
       
    44     };
       
    45 
       
    46 #endif // TTESTUTILS_H