File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
src/Microsoft.Data.SqlClient/tests/FunctionalTests Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 2
2
// The .NET Foundation licenses this file to you under the MIT license.
3
3
// See the LICENSE file in the project root for more information.
4
4
5
+ using System ;
5
6
using System . Reflection ;
6
7
using Xunit ;
7
8
@@ -15,6 +16,8 @@ public class LocalAppContextSwitchesTests
15
16
[ InlineData ( "MakeReadAsyncBlocking" , false ) ]
16
17
[ InlineData ( "UseMinimumLoginTimeout" , true ) ]
17
18
[ InlineData ( "UseCompatibilityProcessSni" , false ) ]
19
+ [ InlineData ( "UseCompatibilityAsyncBehaviour" , false ) ]
20
+ [ InlineData ( "UseConnectionPoolV2" , false ) ]
18
21
public void DefaultSwitchValue ( string property , bool expectedDefaultValue )
19
22
{
20
23
var switchesType = typeof ( SqlCommand ) . Assembly . GetType ( "Microsoft.Data.SqlClient.LocalAppContextSwitches" ) ;
You can’t perform that action at this time.
0 commit comments