Skip to content

Commit

Permalink
add test for CursorDown
Browse files Browse the repository at this point in the history
  • Loading branch information
koentsje committed Mar 12, 2014
1 parent a8be351 commit 010cb27
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 CursorDownTest {

@Test
public void testGetType() {
CursorDown cursorDown = new CursorDown(null);
Assert.assertEquals(CommandType.CURSOR_DOWN, cursorDown.getType());
}

}

0 comments on commit 010cb27

Please sign in to comment.