Commits (2)
...@@ -127,6 +127,7 @@ public class Test_Cre_Mha_Erhd extends UiccTestModel { ...@@ -127,6 +127,7 @@ public class Test_Cre_Mha_Erhd extends UiccTestModel {
addResult(response.checkSw("911A")); addResult(response.checkSw("911A"));
//TC 16 //TC 16
response = test.fetch("1A"); response = test.fetch("1A");
addResult(response.checkSw("9000"));
response = test.terminalResponse("81030140 01820282 8183010038 0281003502 " + response = test.terminalResponse("81030140 01820282 8183010038 0281003502 " +
"03003902 000A"); "03003902 000A");
addResult(response.checkSw("9000")); addResult(response.checkSw("9000"));
...@@ -174,6 +175,7 @@ public class Test_Cre_Mha_Erhd extends UiccTestModel { ...@@ -174,6 +175,7 @@ public class Test_Cre_Mha_Erhd extends UiccTestModel {
//TC 24 //TC 24
//fetch declare service //fetch declare service
response = test.fetch("10");//fetch declare service response = test.fetch("10");//fetch declare service
addResult(response.checkSw("9000"));
//get the service record tlv from declare service command //get the service record tlv from declare service command
String servrectlv = getServiceRecordTLV(response.getData()); String servrectlv = getServiceRecordTLV(response.getData());
response = test.terminalResponse("81030147 0082028281 830100"); response = test.terminalResponse("81030147 0082028281 830100");
......
...@@ -84,13 +84,13 @@ public class Test_Cre_Tin_Chal extends UiccTestModel { ...@@ -84,13 +84,13 @@ public class Test_Cre_Tin_Chal extends UiccTestModel {
"00" + // LV TAR Value(s) "00" + // LV TAR Value(s)
"00", // V Maximum number of services "00", // V Maximum number of services
true); true);
addResult(response.checkSw("9000"));
// Send a status command to be sure to retrieve the correct status word in the RAPDU // Send a status command to be sure to retrieve the correct status word in the RAPDU
test.status("00","0C","00"); test.status("00","0C","00");
// Fetch SetUpMenu // Fetch SetUpMenu
test.fetch("20"); response = test.fetch("20");
addResult(response.checkSw("9000"));
test.terminalResponse("81030125 00820282 81830100"); test.terminalResponse("81030125 00820282 81830100");
...@@ -129,16 +129,16 @@ public class Test_Cre_Tin_Chal extends UiccTestModel { ...@@ -129,16 +129,16 @@ public class Test_Cre_Tin_Chal extends UiccTestModel {
"03" + // V Position of menu entry 1 "03" + // V Position of menu entry 1
"07" + // V Maximum number of channels "07" + // V Maximum number of channels
"00" + // LV Minimum Security Level field "00" + // LV Minimum Security Level field
"00" + // LV TAR Value(s) "00" + // LV TAR Value(s)
"00"); // V Maximum number of services "00", // V Maximum number of services
true);
addResult(response.checkSw("9000"));
// Send a status command to be sure to retrieve the correct status word in the RAPDU // Send a status command to be sure to retrieve the correct status word in the RAPDU
test.status("00","0C","00"); test.status("00","0C","00");
// Fetch SetUpMenu // Fetch SetUpMenu
test.fetch("2A"); response = test.fetch("2A");
addResult(response.checkSw("9000"));
test.terminalResponse("81030125 00820282 81830100"); test.terminalResponse("81030125 00820282 81830100");
......