Skip to content

Commit c197312

Browse files
committed
Test dependency updates - MSTest.TestAdapter/MSTest.TestFramework (3.4.3 -> 3.8.0)
1 parent b011d2e commit c197312

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

QueryDB.Core.Tests/App.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<configuration>
33
<appSettings>
4-
<add key="UseDocker" value="true" />
54
<add key="MSSQLConnection" value="Data Source=(local);Initial Catalog=master;User Id=SA;Password=__DB_PASSWORD__;Encrypt=False;" />
65
<add key="MySQLConnection" value="server=localhost;database=mysql;uid=root;pwd=__DB_PASSWORD__;" />
76
<add key="OracleConnection" value="Data Source = (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))(CONNECT_DATA = (SERVER = DEDICATED)(SID = XE))); User Id = sys;Password=__DB_PASSWORD__;DBA Privilege=SYSDBA" />

QueryDB.Core.Tests/QueryDB.Core.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1313
</PackageReference>
1414
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
15-
<PackageReference Include="MSTest.TestAdapter" Version="3.4.3" />
16-
<PackageReference Include="MSTest.TestFramework" Version="3.4.3" />
15+
<PackageReference Include="MSTest.TestAdapter" Version="3.8.0" />
16+
<PackageReference Include="MSTest.TestFramework" Version="3.8.0" />
1717
<PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.1" />
1818
</ItemGroup>
1919

QueryDB.Core.Tests/TestBase.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,6 @@ public class TestBase
2222
protected const string QUERY_DB_EXCEPTION_TESTS = "QUERY-DB-EXCEPTION-TESTS";
2323
protected const string UNKNOW_DB_TESTS = "UNKNOW-DB-TESTS";
2424

25-
[AssemblyInitialize]
26-
internal void CheckDockerImages()
27-
{
28-
if (_useDocker.Equals("true"))
29-
{
30-
//TBD
31-
}
32-
}
33-
3425
protected string ConvertToUTCInUSFormat(string dateString)
3526
{
3627
DateTimeOffset date;

0 commit comments

Comments
 (0)