-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathMySQL57NtsTestCasesFixture.cs
49 lines (39 loc) · 1.35 KB
/
MySQL57NtsTestCasesFixture.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using NHibernate.Cfg;
using NUnit.Framework;
using System.IO;
using Tests.NHibernate.Spatial.NtsTestCases;
namespace Tests.NHibernate.Spatial
{
[TestFixture]
public class MySQL57NtsTestCasesFixture : NtsTestCasesFixture
{
private const string LocalDataPath = "../../../../Tests.NHibernate.Spatial.MySQL57/NtsTestCases/Data";
protected override string TestFunctionAAPrecDataPath => Path.Combine(LocalDataPath, "general", "TestFunctionAAPrec.xml");
protected override void Configure(Configuration configuration)
{
TestConfiguration.Configure(configuration);
}
#region Unsupported features
[Test]
[Ignore("Provider does not support the Relate function")]
public override void BooleanRelate()
{ }
[Test]
[Ignore("Provider does not support the CoveredBy function")]
public override void CoveredBy()
{ }
[Test]
[Ignore("Provider does not support the Covers function")]
public override void Covers()
{ }
[Test]
[Ignore("Provider does not support the EqualsExact function")]
public override void EqualsExact()
{ }
[Test]
[Ignore("Provider does not support the Relate function")]
public override void StringRelate()
{ }
#endregion
}
}