(name: string)
| 997 | const fixture = ecma335Fixture(); |
| 998 | const parsed = new DotNetPdbParser(fixture.assembly, fixture.pdb).parse(); |
| 999 | const method = (name: string) => parsed.find(entry => entry.method.methodName === name)!; |
| 1000 | |
| 1001 | expect(method('Add')).toMatchObject({ |
| 1002 | method: { |
no test coverage detected