Home | History | Annotate | Download | only in websockets

Lines Matching refs:Checkpoint

40 typedef testing::StrictMock< testing::MockFunction<void(int)> > Checkpoint;
167 Checkpoint checkpoint;
172 EXPECT_CALL(checkpoint, Call(1));
177 checkpoint.Call(1);
204 Checkpoint checkpoint;
208 EXPECT_CALL(checkpoint, Call(1));
212 EXPECT_CALL(checkpoint, Call(2));
214 EXPECT_CALL(checkpoint, Call(3));
224 checkpoint.Call(1);
226 checkpoint.Call(2);
228 checkpoint.Call(3);
258 Checkpoint checkpoint;
262 EXPECT_CALL(checkpoint, Call(1));
279 checkpoint.Call(1);
374 Checkpoint checkpoint;
378 EXPECT_CALL(checkpoint, Call(1));
388 checkpoint.Call(1);
501 Checkpoint checkpoint;
505 EXPECT_CALL(checkpoint, Call(1));
514 checkpoint.Call(1);
666 Checkpoint checkpoint;
671 EXPECT_CALL(checkpoint, Call(1));
674 EXPECT_CALL(checkpoint, Call(2));
677 EXPECT_CALL(checkpoint, Call(3));
681 checkpoint.Call(1);
684 checkpoint.Call(2);
687 checkpoint.Call(3);
695 Checkpoint checkpoint;
700 EXPECT_CALL(checkpoint, Call(1));
703 EXPECT_CALL(checkpoint, Call(2));
707 checkpoint.Call(1);
710 checkpoint.Call(2);