package mixconfig.tools.dataretention.smartcard.commands; import org.junit.*; public class GetVersionCommandTest extends AbstractCommandTest { @Before public void initialize() { this.command = new GetVersionCommand(); } @Test public void apduIsBuiltCorrectly() { checkAPDU(new byte[] { (byte) 0xB0, (byte) 0x20, (byte) 0x00, (byte) 0x00, (byte) 0x0F }); } }