| 62 | |
| 63 | // Activity impls |
| 64 | class PaymentActivityImpl implements PaymentActivity { |
| 65 | @Override |
| 66 | public boolean chargeCard(String orderId, double amount) { return true; } |
| 67 | } |
| 68 | |
| 69 | class ShippingActivityImpl implements ShippingActivity { |
| 70 | @Override |
nothing calls this directly
no outgoing calls
no test coverage detected