forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVersionedEntityWithInverseOneToManyFailureExpectedTest.cs
48 lines (42 loc) · 1.27 KB
/
VersionedEntityWithInverseOneToManyFailureExpectedTest.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
using System;
using NUnit.Framework;
using NHibernate.Test.Immutable.EntityWithMutableCollection;
namespace NHibernate.Test.Immutable.EntityWithMutableCollection.Inverse
{
[TestFixture]
public class VersionedEntityWithInverseOneToManyFailureExpectedTest : AbstractEntityWithOneToManyTest
{
protected override string[] Mappings
{
get
{
return new string[] { "Immutable.EntityWithMutableCollection.Inverse.ContractVariationVersioned.hbm.xml" };
}
}
[Test]
[Ignore("known to fail with versioned entity with inverse collection")]
public override void AddExistingOneToManyElementToPersistentEntity()
{
}
[Test]
[Ignore("known to fail with versioned entity with inverse collection")]
public override void CreateWithEmptyOneToManyCollectionMergeWithExistingElement()
{
}
[Test]
[Ignore("known to fail with versioned entity with inverse collection")]
public override void CreateWithEmptyOneToManyCollectionUpdateWithExistingElement()
{
}
[Test]
[Ignore("known to fail with versioned entity with inverse collection")]
public override void RemoveOneToManyElementUsingUpdate()
{
}
[Test]
[Ignore("known to fail with versioned entity with inverse collection")]
public override void RemoveOneToManyElementUsingMerge()
{
}
}
}