(conf,data)
| 291 | reportNamingError(mockToken, 'File name ' + basename + ' violates naming convention') |
| 292 | |
| 293 | def check_namespace_naming(conf,data): |
| 294 | for tk in data.rawTokens: |
| 295 | if tk.str != 'namespace': |
| 296 | continue |
| 297 | mockToken = DataStruct(tk.next.file, tk.next.linenr, tk.next.str, tk.next.column) |
| 298 | for exp in conf.namespace: |
| 299 | evalExpr(conf.namespace, exp, mockToken, 'Namespace') |
| 300 | |
| 301 | def check_variable_naming(conf,cfg,debugprint): |
| 302 | for var in cfg.variables: |
no test coverage detected