Skip to content

Commit 328639f

Browse files
committed
#37 moving test to netspecific namespace
1 parent c806f87 commit 328639f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Src/NHibernate.Envers.Tests/Integration/LazyProperty/Car.cs renamed to Src/NHibernate.Envers.Tests/NetSpecific/Integration/ManyToOne/LazyProperty/Car.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using NHibernate.Envers.Configuration.Attributes;
22

3-
namespace NHibernate.Envers.Tests.Integration.LazyProperty
3+
namespace NHibernate.Envers.Tests.NetSpecific.Integration.ManyToOne.LazyProperty
44
{
55
[Audited]
66
public class Car

Src/NHibernate.Envers.Tests/Integration/LazyProperty/LazyPropertyTest.cs renamed to Src/NHibernate.Envers.Tests/NetSpecific/Integration/ManyToOne/LazyProperty/LazyPropertyTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
using NUnit.Framework;
2-
using System.Linq;
1+
using System.Linq;
2+
using NUnit.Framework;
33

4-
namespace NHibernate.Envers.Tests.Integration.LazyProperty
4+
namespace NHibernate.Envers.Tests.NetSpecific.Integration.ManyToOne.LazyProperty
55
{
66
public class LazyPropertyTest : TestBase
77
{

Src/NHibernate.Envers.Tests/Integration/LazyProperty/Mapping.hbm.xml renamed to Src/NHibernate.Envers.Tests/NetSpecific/Integration/ManyToOne/LazyProperty/Mapping.hbm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"
22
assembly="NHibernate.Envers.Tests"
3-
namespace="NHibernate.Envers.Tests.Integration.LazyProperty">
3+
namespace="NHibernate.Envers.Tests.NetSpecific.Integration.ManyToOne.LazyProperty">
44
<class name="Person" table="DRIVERS">
55
<id name="Id" column="ID_PERSON" type="long">
66
<generator class="native"/>

Src/NHibernate.Envers.Tests/Integration/LazyProperty/Person.cs renamed to Src/NHibernate.Envers.Tests/NetSpecific/Integration/ManyToOne/LazyProperty/Person.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using NHibernate.Envers.Configuration.Attributes;
22

3-
namespace NHibernate.Envers.Tests.Integration.LazyProperty
3+
namespace NHibernate.Envers.Tests.NetSpecific.Integration.ManyToOne.LazyProperty
44
{
55
[Audited]
66
public class Person

0 commit comments

Comments
 (0)