Skip to content

Commit

Permalink
HSEARCH-4305 Do test association updates for the non-owning side of @…
Browse files Browse the repository at this point in the history
  • Loading branch information
yrodiere committed Oct 19, 2022
1 parent b9c2780 commit 02307dd
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 126 deletions.
Expand Up @@ -6,8 +6,6 @@
*/
package org.hibernate.search.integrationtest.mapper.orm.automaticindexing.association.bytype.onetoone.ownedbycontained;

import static org.junit.Assume.assumeTrue;

import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
Expand Down Expand Up @@ -94,46 +92,6 @@ public void setup(OrmSetupHelper.SetupContext setupContext,
} );
}

@Override
public void directAssociationUpdate_indexedEmbedded() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void directAssociationUpdate_indexedEmbeddedShallowReindexOnUpdate() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void directAssociationUpdate_embeddedAssociationsIndexedEmbedded() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void indirectAssociationUpdate_indexedEmbedded() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void indirectAssociationUpdate_indexedEmbeddedShallowReindexOnUpdate() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void indirectAssociationUpdate_usedInCrossEntityDerivedProperty() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void indirectAssociationUpdate_embeddedAssociationsIndexedEmbedded() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

private void notTestedBecauseOfHSEARCH4305AndHSEARCH4708() {
assumeTrue( "Association update tests fail because of https://hibernate.atlassian.net/browse/HSEARCH-4305 / https://hibernate.atlassian.net/browse/HSEARCH-4708",
false );
}

@Entity(name = "containing")
public static class ContainingEntity {

Expand Down
Expand Up @@ -6,8 +6,6 @@
*/
package org.hibernate.search.integrationtest.mapper.orm.automaticindexing.association.bytype.onetoone.ownedbycontained;

import static org.junit.Assume.assumeTrue;

import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
Expand Down Expand Up @@ -98,46 +96,6 @@ public void setup(OrmSetupHelper.SetupContext setupContext,
} );
}

@Override
public void directAssociationUpdate_indexedEmbedded() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void directAssociationUpdate_indexedEmbeddedShallowReindexOnUpdate() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void directAssociationUpdate_embeddedAssociationsIndexedEmbedded() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void indirectAssociationUpdate_indexedEmbedded() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void indirectAssociationUpdate_indexedEmbeddedShallowReindexOnUpdate() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void indirectAssociationUpdate_usedInCrossEntityDerivedProperty() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void indirectAssociationUpdate_embeddedAssociationsIndexedEmbedded() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

private void notTestedBecauseOfHSEARCH4305AndHSEARCH4708() {
assumeTrue( "Association update tests fail because of https://hibernate.atlassian.net/browse/HSEARCH-4305 / https://hibernate.atlassian.net/browse/HSEARCH-4708",
false );
}

@Entity(name = "containing")
public static class ContainingEntity {

Expand Down
Expand Up @@ -6,8 +6,6 @@
*/
package org.hibernate.search.integrationtest.mapper.orm.automaticindexing.association.bytype.onetoone.ownedbycontained;

import static org.junit.Assume.assumeTrue;

import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
Expand Down Expand Up @@ -98,46 +96,6 @@ public void setup(OrmSetupHelper.SetupContext setupContext,
} );
}

@Override
public void directAssociationUpdate_indexedEmbedded() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void directAssociationUpdate_indexedEmbeddedShallowReindexOnUpdate() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void directAssociationUpdate_embeddedAssociationsIndexedEmbedded() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void indirectAssociationUpdate_indexedEmbedded() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void indirectAssociationUpdate_indexedEmbeddedShallowReindexOnUpdate() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void indirectAssociationUpdate_usedInCrossEntityDerivedProperty() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

@Override
public void indirectAssociationUpdate_embeddedAssociationsIndexedEmbedded() {
notTestedBecauseOfHSEARCH4305AndHSEARCH4708();
}

private void notTestedBecauseOfHSEARCH4305AndHSEARCH4708() {
assumeTrue( "Association update tests fail because of https://hibernate.atlassian.net/browse/HSEARCH-4305 / https://hibernate.atlassian.net/browse/HSEARCH-4708",
false );
}

@Entity(name = "containing")
public static class ContainingEntity {

Expand Down

0 comments on commit 02307dd

Please sign in to comment.