10000 Implement new QueryBy method on FakeCommitLog · github/VisualStudio@4cda908 · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 4cda908

Browse files
committed
Implement new QueryBy method on FakeCommitLog
1 parent bd9fa28 commit 4cda908

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/UnitTests/TestDoubles/FakeCommitLog.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using LibGit2Sharp;
44

5-
public class FakeCommitLog : List<Commit>, IQueryableCommitLog
5+
public class FakeCommitLog : List<Commit>, IQueryableCommitLog
66
{
77
public CommitSortStrategies SortedBy
88
{
@@ -36,4 +36,9 @@ public IEnumerable<LogEntry> QueryBy(string path, FollowFilter filter)
3636
{
3737
throw new NotImplementedException();
3838
}
39+
40+
public IEnumerable<LogEntry> QueryBy(string path, CommitFilter filter)
41+
{
42+
throw new NotImplementedException();
43+
}
3944
}

0 commit comments

Comments
 (0)
0