@@ -28,15 +28,19 @@ void SetupRepository(string sha)
28
28
[ Theory ]
29
29
[ 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" ) ]
30
30
[ 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" ) ]
31
32
[ 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" ) ]
32
34
[ 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" ) ]
33
35
[ InlineData ( false , "https://github.com/foo/bar" , "123123" , "" , 1 , 2 , "https://github.com/foo/bar/commit/123123" ) ]
34
36
[ InlineData ( false , "https://github.com/foo/bar" , "" , @"src\dir\file1.cs" , - 1 , 2 , "https://github.com/foo/bar" ) ]
35
37
[ InlineData ( false , "https://github.com/foo/bar" , null , null , - 1 , - 1 , "https://github.com/foo/bar" ) ]
36
38
[ InlineData ( false , null , "123123" , @"src\dir\file1.cs" , 1 , 2 , null ) ]
37
39
[ 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" ) ]
38
40
[ 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" ) ]
39
42
[ 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" ) ]
40
44
[ 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" ) ]
41
45
[ InlineData ( true , "https://github.com/foo/bar" , "" , @"src\dir\file1.cs" , - 1 , 2 , "https://github.com/foo/bar" ) ]
42
46
[ InlineData ( true , null , "123123" , @"src\dir\file1.cs" , 1 , 2 , null ) ]
0 commit comments