(conf,cfg)
| 366 | evalExpr(conf.function_name, exp, mockToken, msgType) |
| 367 | |
| 368 | def check_class_naming(conf,cfg): |
| 369 | for fnc in cfg.functions: |
| 370 | if fnc.type not in ('Constructor','Destructor'): |
| 371 | continue |
| 372 | mockToken = DataStruct(fnc.tokenDef.file, fnc.tokenDef.linenr, fnc.name, fnc.tokenDef.column) |
| 373 | msgType = 'Class ' + fnc.type |
| 374 | for exp in conf.class_name: |
| 375 | evalExpr(conf.class_name, exp, mockToken, msgType) |
| 376 | |
| 377 | def process_data(conf,data,cli,debugprint): |
| 378 | if conf.file: |
no test coverage detected