()
| 22 | } |
| 23 | |
| 24 | public static PushResult failed() { |
| 25 | return new PushResult(false); |
| 26 | } |
| 27 | |
| 28 | public static boolean checkSuccess(PushResult pushResult) { |
| 29 | return null != pushResult && pushResult.isSuccess(); |
no outgoing calls
no test coverage detected