Skip to content

Commit

Permalink
add test for DeviceStatusReport
Browse files Browse the repository at this point in the history
  • Loading branch information
koentsje committed Mar 12, 2014
1 parent 0bb3e2b commit e0c3a24
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 DeviceStatusReportTest {

@Test
public void testGetType() {
DeviceStatusReport deviceStatusReport = new DeviceStatusReport(null);
Assert.assertEquals(CommandType.DEVICE_STATUS_REPORT, deviceStatusReport.getType());
}

}

0 comments on commit e0c3a24

Please sign in to comment.