Searched refs:mccStr (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/telephony/current/src/android/telephony/cts/ |
D | CellInfoTest.java | 449 private static void verifyPlmnInfo(String mccStr, String mncStr, int mcc, int mnc) { in verifyPlmnInfo() argument 453 mnc == Integer.MAX_VALUE && mccStr == null && mncStr == null); in verifyPlmnInfo() 460 (mccStr == null) == (mncStr == null)); in verifyPlmnInfo() 465 assertTrue("getMccString() out of range [0, 999], mcc=" + mccStr, in verifyPlmnInfo() 466 mccStr == null || mccStr.matches("^[0-9]{3}$")); in verifyPlmnInfo() 468 assertTrue("MccString must match Mcc Integer, str=" + mccStr + " int=" + mcc, in verifyPlmnInfo() 469 mccStr == null || mcc == Integer.parseInt(mccStr)); in verifyPlmnInfo() 527 String mccStr = nr.getMccString(); in verifyCellIdentityNr() local 530 assertTrue("getMccString() out of range [0, 999], mcc=" + mccStr, in verifyCellIdentityNr() 531 mccStr == null || mccStr.matches("^[0-9]{3}$")); in verifyCellIdentityNr() [all …]
|