1
2
3
4
5
6
7
8
9
10 package org.eclipse.jgit.revwalk;
11
12 import org.eclipse.jgit.internal.storage.file.FileRepository;
13 import org.eclipse.jgit.junit.TestRepository;
14
15 public class PedestrianObjectReachabilityTest
16 extends ObjectReachabilityTestCase {
17
18 @Override
19 ObjectReachabilityChecker getChecker(
20 TestRepository<FileRepository> repository)
21 throws Exception {
22 return new PedestrianObjectReachabilityChecker(
23 repository.getRevWalk().toObjectWalkWithSameObjects());
24 }
25 }