~madteam/mg5amcnlo/series2.0

« back to all changes in this revision

Viewing changes to tests/unit_tests/iolibs/test_import_v4.py

  • Committer: Olivier Mattelaer
  • Date: 2010-05-19 08:20:05 UTC
  • mfrom: (28.7.45 MG5_on_web)
  • Revision ID: olivier.mattelaer@uclouvain.be-20100519082005-krxeykqsw7h01ze3
Version with differentiate command line for the Web.

Show diffs side-by-side

added added

removed removed

Lines of Context:
266
266
        #the initialization is done in the setUp subroutine
267
267
        
268
268
        proccard = self.proccard
269
 
        
270
269
        self.assertEqual(len(proccard.process), 8)
271
270
        self.assertEqual(proccard.model, 'sm')
272
271
        self.assertEqual(len(proccard.multipart), 6)
283
282
                   'define l- e- mu-', 
284
283
                   'define vl ve vm', 
285
284
                   'define vl~ ve~ vm~', 
286
 
                   'generate p p > e- ve~ @1 ', 
 
285
                   'generate p p > ve~ e- @1 ', 
287
286
                   'add process p p > z @2 , (z > w+ w- , w- > mu- vm  ) ',
288
287
                   'add process p p > t t~ $ a QED=0 @3 ', 
289
288
                   'add process p p > t t~ $ g / a QED=0 @2 ', 
294
293
                   'setup madevent_v4 . -f', 
295
294
                   'export madevent_v4', 
296
295
                   'makehtml madevent_v4', 
297
 
                   'history tests/Cards/proc_card_mg5.dat']    
 
296
                   'history .'] 
 
297
  
298
298
        self.assertEqual(len(lines),len(solution))
299
299
        for i,command in enumerate(lines):
300
300
            self.assertEqual(command,solution[i])