Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:47

0001 # Behavior test configuration file for MessageLogger service
0002 # Include MessageLogger.cfi only
0003 # Not part of the regression suite
0004 
0005 import FWCore.ParameterSet.Config as cms
0006 
0007 process = cms.Process("TEST")
0008 
0009 import FWCore.Framework.test.cmsExceptionsFatal_cff
0010 process.options = FWCore.Framework.test.cmsExceptionsFatal_cff.options
0011 
0012 process.load("FWCore.MessageService.test.Services_cff")
0013 
0014 process.load("FWCore.MessageService.MessageLogger_cfi")
0015 
0016 process.maxEvents = cms.untracked.PSet(
0017     input = cms.untracked.int32(1)
0018 )
0019 
0020 process.source = cms.Source("EmptySource")
0021 
0022 process.sendSomeMessages = cms.EDAnalyzer("UnitTestClient_G")
0023 
0024 process.p = cms.Path(process.sendSomeMessages)