All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
algtypealiases_test.py
Go to the documentation of this file.
1 # -*- coding: utf-8 -*-
2 import BaseTest
3 from BaseTest import *
4 
5 class Test(BaseTest):
6 
7  def __init__(self):
8  BaseTest.__init__(self)
9  self.name = os.path.basename(__file__)[:-5]
10  self.program="gaudirun.py"
11  self.reference="refs/AlgTypeAliases.ref"
12  self.options="""from Gaudi.Configuration import *
13 
14 from Configurables import ApplicationMgr, HelloWorld, SubAlg
15 
16 app = ApplicationMgr(EvtSel='NONE', EvtMax=4)
17 
18 app.TopAlg = ['HelloWorld/HW1', 'unalias:HelloWorld/HW2' ]
19 
20 app.AlgTypeAliases['HelloWorld'] = 'SubAlg'"""