/** * Copyright (c) Red Hat, Inc., contributors and others 2004 - 2014. All rights reserved * * Licensed under the Eclipse Public License version 1.0, available at * http://www.eclipse.org/legal/epl-v10.html */ package org.jboss.tools.aesh.core.internal.ansi; import org.jboss.tools.aesh.core.document.Document; import org.jboss.tools.aesh.core.test.util.TestDocument; import org.junit.Assert; import org.junit.Test; public class CursorForwardTest { private int cursorOffset = 0; private Document testDocument = new TestDocument() { @Override public int getCursorOffset() { return cursorOffset; } @Override public void moveCursorTo(int offset) { cursorOffset = offset; } }; @Test public void testGetType() { CursorForward cursorForward = new CursorForward("5"); Assert.assertEquals(CommandType.CURSOR_FORWARD, cursorForward.getType()); } @Test public void testHandle() { CursorForward cursorForward = new CursorForward("5"); cursorOffset = 10; cursorForward.handle(testDocument); Assert.assertEquals(15, cursorOffset); } }