Skip to content

Commit 238d384

Browse files
authored
Align test namespaces with the EF standard (#3419)
1 parent 5785b40 commit 238d384

File tree

250 files changed

+417
-660
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

250 files changed

+417
-660
lines changed

test/EFCore.PG.FunctionalTests/BadDataJsonDeserializationNpgsqlTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Npgsql.EntityFrameworkCore.PostgreSQL;
1+
namespace Microsoft.EntityFrameworkCore;
22

33
public class BadDataJsonDeserializationSqlServerTest : BadDataJsonDeserializationTestBase
44
{

test/EFCore.PG.FunctionalTests/BatchingTest.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
using Microsoft.EntityFrameworkCore.Diagnostics.Internal;
22
using Npgsql.EntityFrameworkCore.PostgreSQL.Diagnostics.Internal;
33
using Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure;
4-
using Npgsql.EntityFrameworkCore.PostgreSQL.TestUtilities;
54

65
// ReSharper disable UnusedAutoPropertyAccessor.Local
76
// ReSharper disable InconsistentNaming
8-
namespace Npgsql.EntityFrameworkCore.PostgreSQL;
7+
namespace Microsoft.EntityFrameworkCore;
98

109
#nullable disable
1110

test/EFCore.PG.FunctionalTests/BuiltInDataTypesNpgsqlTest.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
using System.Collections.Immutable;
22
using System.ComponentModel.DataAnnotations.Schema;
33
using System.Net.NetworkInformation;
4-
using Npgsql.EntityFrameworkCore.PostgreSQL.TestUtilities;
54

6-
namespace Npgsql.EntityFrameworkCore.PostgreSQL;
5+
namespace Microsoft.EntityFrameworkCore;
76

87
#nullable disable
98

test/EFCore.PG.FunctionalTests/BulkUpdates/ComplexTypeBulkUpdatesNpgsqlTest.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using Microsoft.EntityFrameworkCore.BulkUpdates;
2-
using Npgsql.EntityFrameworkCore.PostgreSQL.TestUtilities;
3-
4-
namespace Npgsql.EntityFrameworkCore.PostgreSQL.Update;
1+
namespace Microsoft.EntityFrameworkCore.BulkUpdates;
52

63
public class ComplexTypeBulkUpdatesNpgsqlTest(
74
ComplexTypeBulkUpdatesNpgsqlTest.ComplexTypeBulkUpdatesNpgsqlFixture fixture,

test/EFCore.PG.FunctionalTests/BulkUpdates/NonSharedModelBulkUpdatesNpgsqlTest.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using Microsoft.EntityFrameworkCore.BulkUpdates;
2-
using Npgsql.EntityFrameworkCore.PostgreSQL.TestUtilities;
3-
4-
namespace Npgsql.EntityFrameworkCore.PostgreSQL.Update;
1+
namespace Microsoft.EntityFrameworkCore.BulkUpdates;
52

63
public class NonSharedModelBulkUpdatesNpgsqlTest : NonSharedModelBulkUpdatesRelationalTestBase
74
{

test/EFCore.PG.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesNpgsqlFixture.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
using Microsoft.EntityFrameworkCore.BulkUpdates;
21
using Microsoft.EntityFrameworkCore.TestModels.Northwind;
3-
using Npgsql.EntityFrameworkCore.PostgreSQL.TestModels.Northwind;
4-
using Npgsql.EntityFrameworkCore.PostgreSQL.TestUtilities;
52

6-
namespace Npgsql.EntityFrameworkCore.PostgreSQL.BulkUpdates;
3+
namespace Microsoft.EntityFrameworkCore.BulkUpdates;
74

85
public class NorthwindBulkUpdatesNpgsqlFixture<TModelCustomizer> : NorthwindBulkUpdatesRelationalFixture<TModelCustomizer>
96
where TModelCustomizer : ITestModelCustomizer, new()

test/EFCore.PG.FunctionalTests/BulkUpdates/NorthwindBulkUpdatesNpgsqlTest.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
using Microsoft.EntityFrameworkCore.BulkUpdates;
21
using Microsoft.EntityFrameworkCore.TestModels.Northwind;
32

4-
namespace Npgsql.EntityFrameworkCore.PostgreSQL.BulkUpdates;
3+
namespace Microsoft.EntityFrameworkCore.BulkUpdates;
54

65
public class NorthwindBulkUpdatesNpgsqlTest(
76
NorthwindBulkUpdatesNpgsqlFixture<NoopModelCustomizer> fixture,

test/EFCore.PG.FunctionalTests/BulkUpdates/TPCFiltersInheritanceBulkUpdatesNpgsqlFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Npgsql.EntityFrameworkCore.PostgreSQL.BulkUpdates;
1+
namespace Microsoft.EntityFrameworkCore.BulkUpdates;
22

33
public class TPCFiltersInheritanceBulkUpdatesNpgsqlFixture : TPCInheritanceBulkUpdatesNpgsqlFixture
44
{

test/EFCore.PG.FunctionalTests/BulkUpdates/TPCFiltersInheritanceBulkUpdatesNpgsqlTest.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
using Microsoft.EntityFrameworkCore.BulkUpdates;
2-
3-
namespace Npgsql.EntityFrameworkCore.PostgreSQL.BulkUpdates;
1+
namespace Microsoft.EntityFrameworkCore.BulkUpdates;
42

53
public class TPCFiltersInheritanceBulkUpdatesNpgsqlTest(
64
TPCFiltersInheritanceBulkUpdatesNpgsqlFixture fixture,

test/EFCore.PG.FunctionalTests/BulkUpdates/TPCInheritanceBulkUpdatesNpgsqlFixture.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
using Microsoft.EntityFrameworkCore.BulkUpdates;
2-
using Npgsql.EntityFrameworkCore.PostgreSQL.TestUtilities;
3-
4-
namespace Npgsql.EntityFrameworkCore.PostgreSQL.BulkUpdates;
1+
namespace Microsoft.EntityFrameworkCore.BulkUpdates;
52

63
public class TPCInheritanceBulkUpdatesNpgsqlFixture : TPCInheritanceBulkUpdatesFixture
74
{

0 commit comments

Comments
 (0)