File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
src/MigrationTools.Clients.TfsObjectModel.Tests Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 1- using Microsoft . Extensions . DependencyInjection ;
2- using Microsoft . VisualStudio . TestTools . UnitTesting ;
1+ using Microsoft . VisualStudio . TestTools . UnitTesting ;
32using MigrationTools . Processors . Infrastructure ;
43
54namespace MigrationTools . Processors . Tests
@@ -28,7 +27,7 @@ public void TfsTeamSettingsProcessorConfigureTest()
2827 } ;
2928 var x = GetTfsTeamSettingsProcessor ( y ) ;
3029 Assert . IsNotNull ( x ) ;
31- Assert . AreEqual ( x . Options . SourceName , "TfsTeamSettingsSource" ) ;
30+ Assert . AreEqual ( "TfsTeamSettingsSource" , x . Options . SourceName ) ;
3231 Assert . IsNotNull ( x . Source ) ;
3332 }
3433
@@ -41,4 +40,4 @@ public void TfsTeamSettingsProcessorNoEnrichersTest()
4140 Assert . AreEqual ( ProcessingStatus . Complete , processor . Status ) ;
4241 }
4342 }
44- }
43+ }
Original file line number Diff line number Diff line change 44using Microsoft . Extensions . DependencyInjection ;
55using Microsoft . VisualStudio . TestTools . UnitTesting ;
66using MigrationTools . DataContracts ;
7- using MigrationTools . Tests ;
87using MigrationTools . Tools ;
98
109
@@ -38,8 +37,7 @@ public void TfsRevisionManagerToolInSync1()
3837
3938 var revs = processorEnricher . GetRevisionsToMigrate ( source , target ) ;
4039
41- Assert . AreEqual ( revs . Count , 0 ) ;
42-
40+ Assert . AreEqual ( 0 , revs . Count ) ;
4341 }
4442
4543 [ TestMethod ( ) , TestCategory ( "L0" ) ]
You can’t perform that action at this time.
0 commit comments