Search in sources :

Example 1 with Redo

use of io.github.interacto.command.library.Redo in project latexdraw by arnobl.

the class TestCanvas method testSelectionBorderUpdatedOnRedoModifyingCmd.

@Test
public void testSelectionBorderUpdatedOnRedoModifyingCmd() {
    Cmds.of(addRec, selectAllShapes).execute();
    final RotateShapes cmd = new RotateShapes(addedRec.getGravityCentre(), addedRec, Math.PI / 2d);
    cmd.doCmdBody();
    cmd.done();
    CommandsRegistry.getInstance().addCommand(cmd);
    WaitForAsyncUtils.waitForFxEvents();
    final Bounds borderInitial = canvas.getSelectionBorder().getBoundsInLocal();
    final Undo undo = new Undo();
    undo.doIt();
    undo.done();
    CommandsRegistry.getInstance().addCommand(undo);
    WaitForAsyncUtils.waitForFxEvents();
    final Bounds border = canvas.getSelectionBorder().getBoundsInLocal();
    final Redo redo = new Redo();
    redo.doIt();
    redo.done();
    CommandsRegistry.getInstance().addCommand(redo);
    WaitForAsyncUtils.waitForFxEvents();
    final Bounds border2 = canvas.getSelectionBorder().getBoundsInLocal();
    assertThat(border2).isNotEqualTo(border);
    assertThat(border2).isEqualTo(borderInitial);
}
Also used : RotateShapes(net.sf.latexdraw.command.shape.RotateShapes) Bounds(javafx.geometry.Bounds) Redo(io.github.interacto.command.library.Redo) Undo(io.github.interacto.command.library.Undo) Test(org.junit.Test)

Aggregations

Redo (io.github.interacto.command.library.Redo)1 Undo (io.github.interacto.command.library.Undo)1 Bounds (javafx.geometry.Bounds)1 RotateShapes (net.sf.latexdraw.command.shape.RotateShapes)1 Test (org.junit.Test)1