Update contrib.
2 * Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Vector tests for asymmetric ciphers
23 #include "t_testaction.h"
25 #include <asymmetric.h>
26 #include <asymmetrickeys.h>
30 * Base class for vector tests that implements the virtual methods they all have
34 class CVectorTest : public CTestAction
37 virtual void PerformAction(TRequestStatus& aStatus);
39 /** Constructor for derived classes. */
40 CVectorTest(CConsoleBase& aConsole, Output& aOut);
42 // xxx should this be protected?
43 virtual ~CVectorTest();
44 virtual void ConstructL(const TTestActionSpec& aTestActionSpec);
45 virtual void DoPerformPrerequisite(TRequestStatus& aStatus);
46 virtual void DoPerformPostrequisite(TRequestStatus& aStatus);
47 virtual void DoReportAction(void);
48 virtual void DoCheckResult(TInt);
50 virtual void DoPerformActionL() = 0;
51 virtual void DoPerformanceTestActionL() = 0;
53 TInt iPerfTestIterations;