| 23 | |
| 24 | // mimic StringBuilder to test call site transfer |
| 25 | interface StringBuilder { |
| 26 | |
| 27 | StringBuilder append(String s); |
| 28 | |
| 29 | String toString(); |
| 30 | } |
| 31 | |
| 32 | // mimic JDBC to test call site sink |
| 33 | interface Connection { |
no outgoing calls
no test coverage detected