CMS 3D CMS Logo

List of all members | Public Member Functions
MassReplace.SwitchProducerTest Class Reference
Inheritance diagram for MassReplace.SwitchProducerTest:

Public Member Functions

def __init__ (self, **kargs)
 

Detailed Description

Definition at line 144 of file MassReplace.py.

Constructor & Destructor Documentation

◆ __init__()

def MassReplace.SwitchProducerTest.__init__ (   self,
**  kargs 
)

Definition at line 145 of file MassReplace.py.

145  def __init__(self, **kargs):
146  super(SwitchProducerTest,self).__init__(
147  dict(
148  test1 = lambda: (True, -10),
149  test2 = lambda: (True, -9),
150  test3 = lambda: (True, -8),
151  test4 = lambda: (True, -7)
152  ), **kargs)
153 
154  class TestModuleCommand(unittest.TestCase):