Skip to content

Commit

Permalink
Update test cases;
Browse files Browse the repository at this point in the history
  • Loading branch information
agile.zhou committed Jan 27, 2024
1 parent 497fa7b commit 1481902
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace AgileConfig.Server.ServiceTests.PostgreSQL
{
[TestClass()]
public class AppServiceTests_pg : AppServiceTests
{
static PostgreSqlContainer _container = new PostgreSqlBuilder().WithImage("postgres:15.1").Build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace AgileConfig.Server.ServiceTests.PostgreSQL
{
[TestClass()]
public class ConfigServiceTests_pg: ConfigServiceTests
{
static PostgreSqlContainer _container = new PostgreSqlBuilder().WithImage("postgres:15.1").Build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

namespace AgileConfig.Server.ServiceTests.PostgreSQL
{
[TestClass()]
public class ServerNodeServiceTests_pg: ServerNodeServiceTests
{
static PostgreSqlContainer _container = new PostgreSqlBuilder().WithImage("postgres:15.1").Build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace AgileConfig.Server.ServiceTests.PostgreSQL
{
[TestClass()]
public class SettingServiceTests_pg : SettingServiceTests
{
static PostgreSqlContainer _container = new PostgreSqlBuilder().WithImage("postgres:15.1").Build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

namespace AgileConfig.Server.ServiceTests.PostgreSQL
{
[TestClass()]
public class SysLogServiceTests_pg: SysLogServiceTests
{
static PostgreSqlContainer _container = new PostgreSqlBuilder().WithImage("postgres:15.1").Build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace AgileConfig.Server.ServiceTests.mysql
{
[TestClass()]
public class AppServiceTests_mysql : AppServiceTests
{
static MySqlContainer _container = new MySqlBuilder().WithImage("mysql:8.0").Build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace AgileConfig.Server.ServiceTests.mysql
{
[TestClass()]
public class ConfigServiceTests_mysql : ConfigServiceTests
{
static MySqlContainer _container = new MySqlBuilder().WithImage("mysql:8.0").Build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

namespace AgileConfig.Server.ServiceTests.mysql
{
[TestClass()]
public class ServerNodeServiceTests_mysql : ServerNodeServiceTests
{
static MySqlContainer _container = new MySqlBuilder().WithImage("mysql:8.0").Build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

namespace AgileConfig.Server.ServiceTests.mysql
{
[TestClass()]
public class SettingServiceTests_mysql : SettingServiceTests
{
static MySqlContainer _container = new MySqlBuilder().WithImage("mysql:8.0").Build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

namespace AgileConfig.Server.ServiceTests.mysql
{
[TestClass()]
public class SysLogServiceTests_mysql : SysLogServiceTests
{
static MySqlContainer _container = new MySqlBuilder().WithImage("mysql:8.0").Build();
Expand Down

0 comments on commit 1481902

Please sign in to comment.