Skip to content

Commit 5dc1a10

Browse files
Merge branch 'master' into CleanUpObjectsFactoryUsages
2 parents 0c2f139 + f3be548 commit 5dc1a10

File tree

733 files changed

+696
-1569
lines changed

Some content is hidden

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

733 files changed

+696
-1569
lines changed

src/NHibernate.Test.VisualBasic/Issues/IssueTestCase.vb

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,4 @@
22

33
Public Class IssueTestCase
44
Inherits BugTestCase
5-
6-
Protected Overrides ReadOnly Property MappingsAssembly As String
7-
Get
8-
Return "NHibernate.Test.VisualBasic"
9-
End Get
10-
End Property
11-
12-
Protected Overrides ReadOnly Property Mappings As IList
13-
Get
14-
Return New String() {"Issues." + BugNumber + ".Mappings.hbm.xml"}
15-
End Get
16-
End Property
17-
185
End Class

src/NHibernate.Test/Ado/BatcherFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ protected override string MappingsAssembly
1313
get { return "NHibernate.Test"; }
1414
}
1515

16-
protected override IList Mappings
16+
protected override string[] Mappings
1717
{
1818
get { return new[] { "Ado.VerySimple.hbm.xml", "Ado.AlmostSimple.hbm.xml" }; }
1919
}

src/NHibernate.Test/Ado/GenericBatchingBatcherFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class GenericBatchingBatcherFixture : TestCase
1515
{
1616
protected override string MappingsAssembly => "NHibernate.Test";
1717

18-
protected override IList Mappings => new[] {"Ado.VerySimple.hbm.xml"};
18+
protected override string[] Mappings => new[] {"Ado.VerySimple.hbm.xml"};
1919

2020
protected override void Configure(Configuration configuration)
2121
{

src/NHibernate.Test/Any/AnyTypeTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ protected override string MappingsAssembly
1111
get { return "NHibernate.Test"; }
1212
}
1313

14-
protected override IList Mappings
14+
protected override string[] Mappings
1515
{
1616
get { return new string[] {"Any.Person.hbm.xml"}; }
1717
}

src/NHibernate.Test/Async/Ado/BatcherFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ protected override string MappingsAssembly
2525
get { return "NHibernate.Test"; }
2626
}
2727

28-
protected override IList Mappings
28+
protected override string[] Mappings
2929
{
3030
get { return new[] { "Ado.VerySimple.hbm.xml", "Ado.AlmostSimple.hbm.xml" }; }
3131
}

src/NHibernate.Test/Async/Ado/GenericBatchingBatcherFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class GenericBatchingBatcherFixtureAsync : TestCase
2828
{
2929
protected override string MappingsAssembly => "NHibernate.Test";
3030

31-
protected override IList Mappings => new[] {"Ado.VerySimple.hbm.xml"};
31+
protected override string[] Mappings => new[] {"Ado.VerySimple.hbm.xml"};
3232

3333
protected override void Configure(Configuration configuration)
3434
{

src/NHibernate.Test/Async/Any/AnyTypeTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ protected override string MappingsAssembly
2222
get { return "NHibernate.Test"; }
2323
}
2424

25-
protected override IList Mappings
25+
protected override string[] Mappings
2626
{
2727
get { return new string[] {"Any.Person.hbm.xml"}; }
2828
}

src/NHibernate.Test/Async/BulkManipulation/NativeSQLBulkOperations.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ protected override string MappingsAssembly
2323
get { return "NHibernate.Test"; }
2424
}
2525

26-
protected override IList Mappings
26+
protected override string[] Mappings
2727
{
2828
get { return new string[] { "BulkManipulation.Vehicle.hbm.xml" }; }
2929
}

src/NHibernate.Test/Async/BulkManipulation/NativeSQLBulkOperationsWithCache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class NativeSQLBulkOperationsWithCacheAsync : TestCase
2727
{
2828
protected override string MappingsAssembly => "NHibernate.Test";
2929

30-
protected override IList Mappings => new[] { "BulkManipulation.Vehicle.hbm.xml" };
30+
protected override string[] Mappings => new[] { "BulkManipulation.Vehicle.hbm.xml" };
3131

3232
protected override void Configure(Configuration configuration)
3333
{

src/NHibernate.Test/Async/CacheTest/BatchableCacheFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ namespace NHibernate.Test.CacheTest
2929
[TestFixture]
3030
public class BatchableCacheFixtureAsync : TestCase
3131
{
32-
protected override IList Mappings => new[]
32+
protected override string[] Mappings => new[]
3333
{
3434
"CacheTest.ReadOnly.hbm.xml",
3535
"CacheTest.ReadWrite.hbm.xml"

0 commit comments

Comments
 (0)