(xml: string, file = 'FooMapper.xml')
| 16 | extractFromSource(file, xml).nodes.filter((n) => n.kind === 'method'); |
| 17 | |
| 18 | const methodNames = (xml: string, file = 'FooMapper.xml') => |
| 19 | methodNodes(xml, file).map((n) => n.qualifiedName); |
| 20 | |
| 21 | describe('MyBatis extractor — attribute quoting', () => { |
| 22 | it('accepts a single-quoted namespace', () => { |
no test coverage detected