(CallOptions o1, CallOptions o2)
| 268 | // Only used in noStrayModifications() |
| 269 | // TODO(carl-mastrangelo): consider making a CallOptionsSubject for Truth. |
| 270 | private static boolean equal(CallOptions o1, CallOptions o2) { |
| 271 | return Objects.equal(o1.getDeadline(), o2.getDeadline()) |
| 272 | && Objects.equal(o1.getAuthority(), o2.getAuthority()) |
| 273 | && Objects.equal(o1.getCredentials(), o2.getCredentials()); |
| 274 | } |
| 275 | |
| 276 | private static class FakeTicker extends Deadline.Ticker { |
| 277 | private long time; |