I'm getting exception when trying to write simple unit test using CardSimulator based on this guide "Quick Start Guide: Simulator API";
What I found from debugging that during initialisation it attempts to call APDU class constructor with false (short APDU) and true (extended APDU) parameters but as far as I see in decompiled source APDU class constructor is parameterless.
JC SDK used 3.0.4
@Test
public void test() {
CardSimulator simulator = new CardSimulator();
}
I'm getting exception when trying to write simple unit test using CardSimulator based on this guide "Quick Start Guide: Simulator API";
What I found from debugging that during initialisation it attempts to call APDU class constructor with false (short APDU) and true (extended APDU) parameters but as far as I see in decompiled source APDU class constructor is parameterless.
JC SDK used 3.0.4
See attached picture for more details