@@ -28,6 +28,7 @@ public class TheUrlProperty
2828 [ TestCase ( "https://github.com;https://enterprise.com" , null , 0 ) ]
2929 [ TestCase ( "https://github.com;https://enterprise.com" , "https://github.com/foo/bar" , 0 ) ]
3030 [ TestCase ( "https://github.com;https://enterprise.com" , "https://enterprise.com/foo/bar" , 1 ) ]
31+ [ TestCase ( "https://github.com;https://enterprise.com" , "HTTPS://ENTERPRISE.COM/FOO/BAR" , 1 ) ]
3132 [ TestCase ( "https://github.com;https://enterprise.com" , "https://unknown.com/foo/bar" , 0 ) ]
3233 public async Task Select_Tab_For_Url ( string addresses , string url , int expectTabIndex )
3334 {
@@ -43,6 +44,8 @@ public async Task Select_Tab_For_Url(string addresses, string url, int expectTab
4344 [ TestCase ( "https://github.com;https://enterprise.com" , null , "" , "" ) ]
4445 [ TestCase ( "https://github.com;https://enterprise.com" , "https://github.com/foo/bar" , "https://github.com/foo/bar" , "" ) ]
4546 [ TestCase ( "https://github.com;https://enterprise.com" , "https://enterprise.com/foo/bar" , "" , "https://enterprise.com/foo/bar" ) ]
47+ [ TestCase ( "https://github.com;https://enterprise.com" , "HTTPS://GITHUB.COM/FOO/BAR" , "HTTPS://GITHUB.COM/FOO/BAR" , "" ) ]
48+ [ TestCase ( "https://github.com;https://enterprise.com" , "HTTPS://ENTERPRISE.COM/FOO/BAR" , "" , "HTTPS://ENTERPRISE.COM/FOO/BAR" ) ]
4649 [ TestCase ( "https://github.com;https://enterprise.com" , "https://unknown.com/foo/bar" , "" , "" ) ]
4750 public async Task Set_Filter_For_Url ( string addresses , string url , string expectGitHubFilter , string expectEnterpriseFilter )
4851 {
0 commit comments