os/security/contentmgmt/cafstreamingsupport/test/tscaf/inc/treferenceagent.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 2007-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 // Describes the reference agent test case verifying the validity of the reference agent implementation.
    15 // 
    16 //
    17 
    18 /**
    19  @file 
    20  @internalComponent
    21  @test
    22 */
    23 
    24 #ifndef TREFERENCEAGENT_H
    25 #define TREFERENCEAGENT_H
    26 
    27 #include "tipsec.h"
    28 
    29 // The reference agent test sends and validates IPSec associations, 
    30 // thus it shares much functionality with CScafIpSec class. Therefore,
    31 // CScafRefAgent class derives from CScafIpSec.
    32 
    33 class CScafRefAgent: public CScafIpSec
    34 	{
    35 public:
    36 	CScafRefAgent(CScafServer& aParent);
    37 	TVerdict doTestL();
    38 	};
    39 
    40 // Test case identifier definition
    41 _LIT(KScafRefAgent,"SCAFRefAgent");
    42 // Reference agent private folder
    43 _LIT(KSraPrivateFolder, "!:\\private\\10285A1C\\");
    44 
    45 #endif /* REFERENCEAGENT_H */