Searched refs:methodsCaptor (Results 1 – 1 of 1) sorted by relevance
366 ArgumentCaptor<List> methodsCaptor = ArgumentCaptor.forClass(List.class); in testAfterClass_runAsAfterForPassingTest() local367 verify(mRunner, times(1)).invokeAndCollectErrors(methodsCaptor.capture(), any()); in testAfterClass_runAsAfterForPassingTest()368 Assert.assertEquals(methodsCaptor.getValue().size(), 1); in testAfterClass_runAsAfterForPassingTest()370 ((FrameworkMethod) methodsCaptor.getValue().get(0)) in testAfterClass_runAsAfterForPassingTest()392 ArgumentCaptor<List> methodsCaptor = ArgumentCaptor.forClass(List.class); in testAfterClass_runAsAfterClassForFailingTest() local393 verify(mRunner, times(1)).invokeAndCollectErrors(methodsCaptor.capture(), any()); in testAfterClass_runAsAfterClassForFailingTest()394 Assert.assertEquals(methodsCaptor.getValue().size(), 1); in testAfterClass_runAsAfterClassForFailingTest()396 ((FrameworkMethod) methodsCaptor.getValue().get(0)) in testAfterClass_runAsAfterClassForFailingTest()