Skip to content

Commit

Permalink
Tests: supply a missing test setup step.
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Kieffer <steve.kieffer@runbox.com>
  • Loading branch information
skieffer authored and uruuru committed Aug 31, 2021
1 parent c6a7b4f commit 114fd2c
Showing 1 changed file with 7 additions and 0 deletions.
Expand Up @@ -29,10 +29,12 @@
import org.eclipse.elk.alg.layered.p3order.GraphInfoHolder;
import org.eclipse.elk.alg.layered.p3order.LayerSweepCrossingMinimizer;
import org.eclipse.elk.alg.layered.p3order.LayerSweepCrossingMinimizer.CrossMinType;
import org.eclipse.elk.alg.test.PlainJavaInitialization;
import org.eclipse.elk.core.options.PortConstraints;
import org.eclipse.elk.core.options.PortSide;
import org.eclipse.elk.core.util.BasicProgressMonitor;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
Expand All @@ -50,6 +52,11 @@ public class LayerSweepCrossingMinimizerTest extends TestGraphCreator {
private final CrossMinType crossMinType;
private LayerSweepCrossingMinimizer crossMin;

@BeforeClass
public static void init() {
PlainJavaInitialization.initializePlainJavaLayout();
}

/**
* Constructor called by Parameterized.
*
Expand Down

0 comments on commit 114fd2c

Please sign in to comment.