File tree Expand file tree Collapse file tree 3 files changed +7
-9
lines changed
src/Microsoft.Data.SqlClient/tests/FunctionalTests Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 2
2
<configuration >
3
3
<packageSources >
4
4
<clear />
5
+ <add key =" arcade" value =" https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
5
6
<add key =" sqlclient" value =" https://sqlclientdrivers.pkgs.visualstudio.com/public/_packaging/sqlclient/nuget/v3/index.json" />
6
7
<add key =" nuget.org" value =" https://api.nuget.org/v3/index.json" />
7
- <add key =" arcade" value =" https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
8
8
</packageSources >
9
9
</configuration >
Original file line number Diff line number Diff line change 12
12
using System . Security ;
13
13
using System . Threading ;
14
14
using System . Threading . Tasks ;
15
+ using Microsoft . DotNet . XUnitExtensions . Attributes ;
15
16
using Microsoft . SqlServer . TDS . PreLogin ;
16
17
using Microsoft . SqlServer . TDS . Servers ;
17
18
using Xunit ;
@@ -295,8 +296,7 @@ public void ConnectionTestValidCredentialCombination()
295
296
Assert . Equal ( sqlCredential , conn . Credential ) ;
296
297
}
297
298
298
- [ Theory ]
299
- // [ParallelTheory] // Use as soon as Microsoft.DotNet.XUnitExtensions is updated to 10.0.0+
299
+ [ ParallelTheory ]
300
300
[ InlineData ( 60 ) ]
301
301
[ InlineData ( 30 ) ]
302
302
[ InlineData ( 15 ) ]
@@ -335,8 +335,7 @@ public void ConnectionTimeoutTest(int timeout)
335
335
$ "{ Environment . NewLine } { ex } ") ;
336
336
}
337
337
338
- [ Theory ]
339
- // [ParallelTheory] // Use as soon as Microsoft.DotNet.XUnitExtensions is updated to 10.0.0+
338
+ [ ParallelTheory ]
340
339
[ InlineData ( 60 ) ]
341
340
[ InlineData ( 30 ) ]
342
341
[ InlineData ( 15 ) ]
Original file line number Diff line number Diff line change 6
6
using System . Collections . Generic ;
7
7
using System . Net ;
8
8
using System . Threading . Tasks ;
9
+ using Microsoft . DotNet . XUnitExtensions . Attributes ;
9
10
using Microsoft . SqlServer . TDS . Servers ;
10
11
using Xunit ;
11
12
@@ -39,8 +40,7 @@ public void RoutedConnection()
39
40
public async Task RoutedAsyncConnection ( )
40
41
=> await RecursivelyRoutedAsyncConnection ( 1 ) ;
41
42
42
- [ Theory ]
43
- // [ParallelTheory] // Use as soon as Microsoft.DotNet.XUnitExtensions is updated to 10.0.0+
43
+ [ ParallelTheory ]
44
44
[ InlineData ( 2 ) ]
45
45
[ InlineData ( 9 ) ]
46
46
[ InlineData ( 11 ) ] // The driver rejects more than 10 redirects (11 layers of redirecting servers)
@@ -81,8 +81,7 @@ public void RecursivelyRoutedConnection(int layers)
81
81
}
82
82
}
83
83
84
- [ Theory ]
85
- // [ParallelTheory] // Use as soon as Microsoft.DotNet.XUnitExtensions is updated to 10.0.0+
84
+ [ ParallelTheory ]
86
85
[ InlineData ( 2 ) ]
87
86
[ InlineData ( 9 ) ]
88
87
[ InlineData ( 11 ) ] // The driver rejects more than 10 redirects (11 layers of redirecting servers)
You can’t perform that action at this time.
0 commit comments