@@ -30,7 +30,7 @@ public void SetIsPrerelease_WhenAdminAndPrerelease_ShouldSetTitle()
3030
3131 // Assert
3232 mockTitleProvider . Received ( 1 )
33- . SetTitle ( $ "{ Constants . LogName } - { Constants . AppName } (Preview) { Constants . AppInstalledVersion } (Admin)") ;
33+ . SetTitle ( $ "{ Constants . AppName } (Preview) { Constants . AppInstalledVersion } (Admin) - { Constants . LogName } ") ;
3434 }
3535
3636 [ Fact ]
@@ -52,7 +52,7 @@ public void SetIsPrerelease_WhenLogName_ShouldSetTitle()
5252
5353 // Assert
5454 mockTitleProvider . Received ( 1 )
55- . SetTitle ( $ "{ Constants . LogName } - { Constants . AppName } (Preview) { Constants . AppInstalledVersion } ") ;
55+ . SetTitle ( $ "{ Constants . AppName } (Preview) { Constants . AppInstalledVersion } - { Constants . LogName } ") ;
5656 }
5757
5858 [ Fact ]
@@ -96,7 +96,7 @@ public void SetLogName_WhenAdminAndLogName_ShouldSetTitle()
9696
9797 // Assert
9898 mockTitleProvider . Received ( 1 )
99- . SetTitle ( $ "{ Constants . LogName } - { Constants . AppName } { Constants . AppInstalledVersion } (Admin)") ;
99+ . SetTitle ( $ "{ Constants . AppName } { Constants . AppInstalledVersion } (Admin) - { Constants . LogName } ") ;
100100 }
101101
102102 [ Fact ]
@@ -138,7 +138,7 @@ public void SetLogName_WhenLogName_ShouldSetTitle()
138138
139139 // Assert
140140 mockTitleProvider . Received ( 1 )
141- . SetTitle ( $ "{ Constants . LogName } - { Constants . AppName } { Constants . AppInstalledVersion } ") ;
141+ . SetTitle ( $ "{ Constants . AppName } { Constants . AppInstalledVersion } - { Constants . LogName } ") ;
142142 }
143143
144144 [ Fact ]
@@ -266,7 +266,7 @@ public void SetProgressString_WhenProgressAndLogName_ShouldSetTitleWithBoth()
266266 // Assert
267267 mockTitleProvider . Received ( 1 )
268268 . SetTitle (
269- $ "{ Constants . Percentage } - { Constants . LogName } - { Constants . AppName } { Constants . AppInstalledVersion } ") ;
269+ $ "{ Constants . Percentage } - { Constants . AppName } { Constants . AppInstalledVersion } - { Constants . LogName } ") ;
270270 }
271271
272272 private static AppTitleService CreateAppTitleService (
0 commit comments