Skip to content

Commit

Permalink
add test for CursorUp
Browse files Browse the repository at this point in the history
  • Loading branch information
koentsje committed Mar 12, 2014
1 parent 469ae9b commit 0bb3e2b
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package org.jboss.tools.aesh.core.internal.ansi;

import org.junit.Assert;
import org.junit.Test;

public class CursorUpTest {

@Test
public void testGetType() {
CursorUp cursorUp = new CursorUp(null);
Assert.assertEquals(CommandType.CURSOR_UP, cursorUp.getType());
}

}

0 comments on commit 0bb3e2b

Please sign in to comment.