@@ -28,15 +28,19 @@ void SetupRepository(string sha)
2828 [ Theory ]
2929 [ InlineData ( false , "https://github.com/foo/bar" , "123123" , @"src\dir\file1.cs" , - 1 , - 1 , "https://github.com/foo/bar/blob/123123/src/dir/file1.cs" ) ]
3030 [ InlineData ( false , "https://github.com/foo/bar" , "123123" , @"src\dir\file1.cs" , 1 , - 1 , "https://github.com/foo/bar/blob/123123/src/dir/file1.cs#L1" ) ]
31+ [ InlineData ( false , "https://github.com/foo/bar" , "123123" , @"src\dir\file1.cs" , 1 , 1 , "https://github.com/foo/bar/blob/123123/src/dir/file1.cs#L1" ) ]
3132 [ InlineData ( false , "https://github.com/foo/bar" , "123123" , @"src\dir\file1.cs" , 1 , 2 , "https://github.com/foo/bar/blob/123123/src/dir/file1.cs#L1-L2" ) ]
33+ [ InlineData ( false , "https://github.com/foo/bar" , "123123" , @"src\dir\file1.cs" , 2 , 1 , "https://github.com/foo/bar/blob/123123/src/dir/file1.cs#L1-L2" ) ]
3234 [ InlineData ( false , "https://github.com/foo/bar" , "123123" , @"src\dir\file1.cs" , - 1 , 2 , "https://github.com/foo/bar/blob/123123/src/dir/file1.cs" ) ]
3335 [ InlineData ( false , "https://github.com/foo/bar" , "123123" , "" , 1 , 2 , "https://github.com/foo/bar/commit/123123" ) ]
3436 [ InlineData ( false , "https://github.com/foo/bar" , "" , @"src\dir\file1.cs" , - 1 , 2 , "https://github.com/foo/bar" ) ]
3537 [ InlineData ( false , "https://github.com/foo/bar" , null , null , - 1 , - 1 , "https://github.com/foo/bar" ) ]
3638 [ InlineData ( false , null , "123123" , @"src\dir\file1.cs" , 1 , 2 , null ) ]
3739 [ InlineData ( true , "https://github.com/foo/bar" , "123123" , @"src\dir\file1.cs" , - 1 , - 1 , "https://github.com/foo/bar/blob/123123/src/dir/file1.cs" ) ]
3840 [ InlineData ( true , "https://github.com/foo/bar" , "123123" , @"src\dir\file1.cs" , 1 , - 1 , "https://github.com/foo/bar/blob/123123/src/dir/file1.cs#L1" ) ]
41+ [ InlineData ( true , "https://github.com/foo/bar" , "123123" , @"src\dir\file1.cs" , 1 , 1 , "https://github.com/foo/bar/blob/123123/src/dir/file1.cs#L1" ) ]
3942 [ InlineData ( true , "https://github.com/foo/bar" , "123123" , @"src\dir\file1.cs" , 1 , 2 , "https://github.com/foo/bar/blob/123123/src/dir/file1.cs#L1-L2" ) ]
43+ [ InlineData ( true , "https://github.com/foo/bar" , "123123" , @"src\dir\file1.cs" , 2 , 1 , "https://github.com/foo/bar/blob/123123/src/dir/file1.cs#L1-L2" ) ]
4044 [ InlineData ( true , "https://github.com/foo/bar" , "123123" , @"src\dir\file1.cs" , - 1 , 2 , "https://github.com/foo/bar/blob/123123/src/dir/file1.cs" ) ]
4145 [ InlineData ( true , "https://github.com/foo/bar" , "" , @"src\dir\file1.cs" , - 1 , 2 , "https://github.com/foo/bar" ) ]
4246 [ InlineData ( true , null , "123123" , @"src\dir\file1.cs" , 1 , 2 , null ) ]
0 commit comments