Skip to content

Commit 62ae992

Browse files
committed
Fix failing tests
1 parent 5731642 commit 62ae992

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed
Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,15 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Text;
4-
5-
namespace MigrationTools.Services.Shadows
1+
namespace MigrationTools.Services.Shadows
62
{
73
public class TelemetryLoggerFake : ITelemetryLogger
84
{
95
public string SessionId { get { return new Guid().ToString(); } }
106

117
public void TrackException(Exception ex, IDictionary<string, string> properties = null)
128
{
13-
throw new NotImplementedException();
149
}
1510

1611
public void TrackException(Exception ex, IEnumerable<KeyValuePair<string, string>> properties = null)
1712
{
18-
1913
}
2014
}
2115
}

src/MigrationTools.Shadows/Tools/MockFieldMappingTool.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,7 @@ public void AddFieldMap(string workItemTypeName, IFieldMap fieldToTagFieldMap)
1313
throw new NotImplementedException();
1414
}
1515

16-
public List<IFieldMap> GetFieldMappings(string witName)
17-
{
18-
throw new NotImplementedException();
19-
}
16+
public List<IFieldMap> GetFieldMappings(string witName) => [];
2017

2118
public void ApplyFieldMappings(WorkItemData source, WorkItemData target)
2219
{

0 commit comments

Comments
 (0)