| 344 | mockMethod = jest.fn(); |
| 345 | |
| 346 | class TestClass { |
| 347 | @Cacheable((arg1, arg2) => `test:${arg1}:${arg2}`, 100) |
| 348 | async testMethod(arg1: string, arg2: string): Promise<string> { |
| 349 | return mockMethod(arg1, arg2); |
nothing calls this directly
no outgoing calls
no test coverage detected