Home
last modified time | relevance | path

Searched refs:assertTrue (Results 1 – 25 of 2132) sorted by relevance

12345678910>>...86

/cts/hostsidetests/systemui/src/android/host/systemui/
DTileServiceTest.java49 assertTrue(waitFor("onCreate")); in testAddTile()
50 assertTrue(waitFor("onTileAdded")); in testAddTile()
59 assertTrue(waitFor("onCreate")); in testRemoveTile()
60 assertTrue(waitFor("onTileAdded")); in testRemoveTile()
63 assertTrue(waitFor("onTileRemoved")); in testRemoveTile()
73 assertTrue(waitFor("onStartListening")); in testListeningSettings()
76 assertTrue(waitFor("onStopListening")); in testListeningSettings()
85 assertTrue(waitFor("onTileAdded")); in testCantAddDialog()
89 assertTrue(waitFor("onStartListening")); in testCantAddDialog()
93 assertTrue(waitFor("handleShowDialog")); in testCantAddDialog()
[all …]
/cts/tests/tests/os/src/android/os/cts/
DStatFsTest.java32 assertTrue(stat.getBlockSize() > 0); in testStatFs()
33 assertTrue(stat.getBlockCount() > 0); in testStatFs()
34 assertTrue(stat.getFreeBlocks() >= stat.getAvailableBlocks()); in testStatFs()
35 assertTrue(stat.getAvailableBlocks() > 0); in testStatFs()
37 assertTrue(stat.getBlockSizeLong() > 0); in testStatFs()
38 assertTrue(stat.getBlockCountLong() > 0); in testStatFs()
39 assertTrue(stat.getFreeBlocksLong() >= stat.getAvailableBlocksLong()); in testStatFs()
40 assertTrue(stat.getAvailableBlocksLong() > 0); in testStatFs()
42 assertTrue(stat.getFreeBytes() > 0); in testStatFs()
43 assertTrue(stat.getAvailableBytes() > 0); in testStatFs()
[all …]
DPowerManager_WakeLockTest.java52 assertTrue(wl.isHeld()); in testPowerManagerWakeLock()
59 assertTrue(wl.isHeld()); in testPowerManagerWakeLock()
61 assertTrue(wl.isHeld()); in testPowerManagerWakeLock()
63 assertTrue(wl.isHeld()); in testPowerManagerWakeLock()
70 assertTrue(wl.isHeld()); in testPowerManagerWakeLock()
72 assertTrue(wl.isHeld()); in testPowerManagerWakeLock()
78 assertTrue(wl.isHeld()); in testPowerManagerWakeLock()
110 assertTrue(semaphore.tryAcquire(5, SECONDS)); in testWakeLockCallback()
111 assertTrue(mCurrentState1); in testWakeLockCallback()
114 assertTrue(semaphore.tryAcquire(5, SECONDS)); in testWakeLockCallback()
[all …]
/cts/tests/tests/jni/src/android/jni/cts/
DJniInstanceTest.java223 assertTrue(target.takeBoolean(false)); in test_takeBoolean()
226 assertTrue(target.takeBooleanFast(false)); in test_takeBooleanFast()
234 assertTrue(target.takeByte((byte) -99)); in test_takeByte()
237 assertTrue(target.takeByteFast((byte) -99)); in test_takeByteFast()
245 assertTrue(target.takeShort((short) 19991)); in test_takeShort()
248 assertTrue(target.takeShortFast((short) 19991)); in test_takeShortFast()
256 assertTrue(target.takeChar((char) 999)); in test_takeChar()
259 assertTrue(target.takeCharFast((char) 999)); in test_takeCharFast()
267 assertTrue(target.takeInt(-999888777)); in test_takeInt()
270 assertTrue(target.takeIntFast(-999888777)); in test_takeIntFast()
[all …]
DJniStaticTest.java311 assertTrue(StaticNonce.takeBoolean(true)); in test_takeBoolean()
314 assertTrue(StaticNonce.takeBooleanFast(true)); in test_takeBooleanFast()
317 assertTrue(StaticNonce.takeBooleanCritical(true)); in test_takeBooleanCritical()
325 assertTrue(StaticNonce.takeByte((byte) -99)); in test_takeByte()
328 assertTrue(StaticNonce.takeByteFast((byte) -99)); in test_takeByteFast()
331 assertTrue(StaticNonce.takeByteCritical((byte) -99)); in test_takeByteCritical()
339 assertTrue(StaticNonce.takeShort((short) 19991)); in test_takeShort()
342 assertTrue(StaticNonce.takeShortFast((short) 19991)); in test_takeShortFast()
345 assertTrue(StaticNonce.takeShortCritical((short) 19991)); in test_takeShortCritical()
353 assertTrue(StaticNonce.takeChar((char) 999)); in test_takeChar()
[all …]
/cts/tests/tests/widget/src/android/widget/cts/
DScrollerTest.java21 import static org.junit.Assert.assertTrue;
63 assertTrue(mScroller.isFinished()); in testIsFinished()
76 assertTrue(mScroller.getDuration() > 0); in testGetDuration()
86 assertTrue(mScroller.getDuration() > 0); in testGetDuration()
92 assertTrue(mScroller.isFinished()); in testAccessFinalX()
96 assertTrue(mScroller.isFinished()); in testAccessFinalX()
107 assertTrue(mScroller.isFinished()); in testAccessFinalY()
111 assertTrue(mScroller.isFinished()); in testAccessFinalY()
126 assertTrue(mScroller.isFinished()); in testScrollMode()
139 assertTrue(mScroller.computeScrollOffset()); in testScrollMode()
[all …]
/cts/tests/tests/database/src/android/database/cts/
DAbstractWindowedCursorTest.java55 assertTrue(mWindow.setNumColumns(TEST_COLUMN_COUNT)); in testIsNull()
57 assertTrue(mCursor.isNull(COLUMN_INDEX0)); in testIsNull()
58 assertTrue(mWindow.allocRow()); in testIsNull()
61 assertTrue(mWindow.putString(str, ROW_INDEX0, COLUMN_INDEX0)); in testIsNull()
67 assertTrue(mWindow.setNumColumns(TEST_COLUMN_COUNT)); in testIsBlob()
68 assertTrue(mWindow.allocRow()); in testIsBlob()
74 assertTrue(mWindow.putString(str, ROW_INDEX0, COLUMN_INDEX0)); in testIsBlob()
75 assertTrue(mWindow.putBlob(new byte[10], ROW_INDEX0, COLUMN_INDEX1)); in testIsBlob()
76 assertTrue(mCursor.isBlob(COLUMN_INDEX1)); in testIsBlob()
84 assertTrue(mCursor.hasWindow()); in testHasWindow()
[all …]
/cts/tests/tests/text/src/android/text/cts/
DLoginFilter_UsernameFilterGenericTest.java20 import static org.junit.Assert.assertTrue;
44 assertTrue(usernameFilterGeneric.isAllowed('b')); in testIsAllowed()
45 assertTrue(usernameFilterGeneric.isAllowed('B')); in testIsAllowed()
46 assertTrue(usernameFilterGeneric.isAllowed('2')); in testIsAllowed()
51 assertTrue(usernameFilterGeneric.isAllowed('0')); in testIsAllowed()
52 assertTrue(usernameFilterGeneric.isAllowed('9')); in testIsAllowed()
54 assertTrue(usernameFilterGeneric.isAllowed('a')); in testIsAllowed()
55 assertTrue(usernameFilterGeneric.isAllowed('z')); in testIsAllowed()
57 assertTrue(usernameFilterGeneric.isAllowed('A')); in testIsAllowed()
58 assertTrue(usernameFilterGeneric.isAllowed('Z')); in testIsAllowed()
[all …]
DLoginFilter_UsernameFilterGMailTest.java20 import static org.junit.Assert.assertTrue;
44 assertTrue(usernameFilterGMail.isAllowed('c')); in testIsAllowed()
45 assertTrue(usernameFilterGMail.isAllowed('C')); in testIsAllowed()
46 assertTrue(usernameFilterGMail.isAllowed('3')); in testIsAllowed()
51 assertTrue(usernameFilterGMail.isAllowed('0')); in testIsAllowed()
52 assertTrue(usernameFilterGMail.isAllowed('9')); in testIsAllowed()
54 assertTrue(usernameFilterGMail.isAllowed('a')); in testIsAllowed()
55 assertTrue(usernameFilterGMail.isAllowed('z')); in testIsAllowed()
57 assertTrue(usernameFilterGMail.isAllowed('A')); in testIsAllowed()
58 assertTrue(usernameFilterGMail.isAllowed('Z')); in testIsAllowed()
[all …]
/cts/tests/tests/car_builtin/src/android/car/cts/builtin/util/
DValidationHelperTest.java20 import static org.junit.Assert.assertTrue;
48 assertTrue(ValidationHelper.isUserIdValid(USER_NULL)); in testUserIdValidation()
49 assertTrue(ValidationHelper.isUserIdValid(USER_CURRENT_OR_SELF)); in testUserIdValidation()
50 assertTrue(ValidationHelper.isUserIdValid(USER_CURRENT)); in testUserIdValidation()
51 assertTrue(ValidationHelper.isUserIdValid(USER_ALL)); in testUserIdValidation()
52 assertTrue(ValidationHelper.isUserIdValid(USER_SYSTEM)); in testUserIdValidation()
53 assertTrue(ValidationHelper.isUserIdValid(maxUserId)); in testUserIdValidation()
56 assertTrue(ValidationHelper.isUserIdValid(UserHandle.myUserId())); in testUserIdValidation()
68 assertTrue(ValidationHelper.isAppIdValid(Process.FIRST_APPLICATION_UID)); in testAppIdValidation()
69 assertTrue(ValidationHelper.isAppIdValid(Process.LAST_APPLICATION_UID)); in testAppIdValidation()
[all …]
/cts/hostsidetests/monkey/src/com/android/cts/monkey/
DVerbosityTest.java23 assertTrue(v0.contains("Events injected")); in testVerbosity()
30 assertTrue(v1.contains("Events injected")); in testVerbosity()
31 assertTrue(v1.contains("Sending Touch")); in testVerbosity()
32 assertTrue(v1.contains("Sending Trackball")); in testVerbosity()
33 assertTrue(v1.contains("Switch")); in testVerbosity()
37 assertTrue(v2.contains("Events injected")); in testVerbosity()
38 assertTrue(v2.contains("Sending Touch")); in testVerbosity()
39 assertTrue(v2.contains("Sending Trackball")); in testVerbosity()
40 assertTrue(v2.contains("Switch")); in testVerbosity()
41 assertTrue(v2.contains("Sleeping")); in testVerbosity()
[all …]
/cts/tests/tests/graphics/src/android/graphics/cts/
DOutlineTest.java21 import static org.junit.Assert.assertTrue;
41 assertTrue(outline.isEmpty()); in testDefaults()
44 assertTrue(outline.getRadius() < 0); in testDefaults()
102 assertTrue(outline.isEmpty());
105 assertTrue(outline.isEmpty());
108 assertTrue(outline.isEmpty());
112 assertTrue(outline.getRect(outRect));
114 assertTrue(outline.canClip());
118 assertTrue(outline.getRect(outRect));
120 assertTrue(outline.canClip());
[all …]
DRegionTest.java22 import static org.junit.Assert.assertTrue;
117 assertTrue(mRegion.contains(area[i][0], area[i][1])); in verifyPointsInsideRegion()
153 assertTrue(mRegion.set(oriRegion)); in testSet1()
163 assertTrue(mRegion.set(rect)); in testSet2()
172 assertTrue(mRegion.set(1, 2, 3, 4)); in testSet3()
183 assertTrue(mRegion.isRect()); in testIsRect()
200 assertTrue(mRegion.isComplex()); in testIsComplex()
210 assertTrue(mRegion.quickContains(rect)); in testQuickContains1()
222 assertTrue(mRegion.quickContains(1, 2, 3, 4)); in testQuickContains2()
239 assertTrue(mRegion.contains(6, 6)); in testUnion()
[all …]
/cts/tests/tests/media/player/src/android/media/player/cts/
DJetPlayerTest.java20 import static org.junit.Assert.assertTrue;
70 assertTrue(JetPlayer.getMaxTracks() > 0); in setUp()
89 assertTrue(mJetPlayer.clearQueue()); in testLoadJetFromPath()
92 assertTrue(mJetPlayer.loadJetFile(mJetFile)); in testLoadJetFromPath()
98 assertTrue(mJetPlayer.clearQueue()); in testLoadJetFromFd()
100assertTrue(mJetPlayer.loadJetFile(mContext.getResources().openRawResourceFd(R.raw.test_jet))); in testLoadJetFromFd()
106 assertTrue(mJetPlayer.clearQueue()); in testQueueJetSegmentMuteArray()
108assertTrue(mJetPlayer.loadJetFile(mContext.getResources().openRawResourceFd(R.raw.test_jet))); in testQueueJetSegmentMuteArray()
115 assertTrue(mJetPlayer.queueJetSegmentMuteArray(segmentNum, libNum, in testQueueJetSegmentMuteArray()
118 assertTrue(mJetPlayer.play()); in testQueueJetSegmentMuteArray()
[all …]
/cts/tests/tests/telecom/src/android/telecom/cts/
DVideoProfileTest.java27 assertTrue(VideoProfile.isAudioOnly(VideoProfile.STATE_AUDIO_ONLY)); in testIsAudioOnly()
28 assertTrue(VideoProfile.isAudioOnly(VideoProfile.STATE_PAUSED)); in testIsAudioOnly()
42 assertTrue(VideoProfile.isVideo(VideoProfile.STATE_BIDIRECTIONAL)); in testIsVideo()
43 assertTrue(VideoProfile.isVideo(VideoProfile.STATE_RX_ENABLED)); in testIsVideo()
44 assertTrue(VideoProfile.isVideo(VideoProfile.STATE_TX_ENABLED)); in testIsVideo()
45 assertTrue(VideoProfile.isVideo(VideoProfile.STATE_BIDIRECTIONAL | in testIsVideo()
47 assertTrue(VideoProfile.isVideo(VideoProfile.STATE_RX_ENABLED | VideoProfile.STATE_PAUSED)); in testIsVideo()
48 assertTrue(VideoProfile.isVideo(VideoProfile.STATE_TX_ENABLED | VideoProfile.STATE_PAUSED)); in testIsVideo()
55 assertTrue(VideoProfile.isBidirectional(VideoProfile.STATE_BIDIRECTIONAL)); in testIsBidirectional()
56 assertTrue(VideoProfile.isBidirectional(VideoProfile.STATE_BIDIRECTIONAL | in testIsBidirectional()
[all …]
/cts/hostsidetests/dumpsys/src/android/dumpsys/cts/
DGfxInfoDumpsysTest.java62 assertTrue(frameinfo.length() > 0); in testGfxinfoFramestats()
65 assertTrue(profileStart >= 0); in testGfxinfoFramestats()
66 assertTrue(profileEnd > profileStart); in testGfxinfoFramestats()
68 assertTrue(profileData.length() > 0); in testGfxinfoFramestats()
85 assertTrue("First line was not the expected header: " + line, in validateProfileData()
97 assertTrue(parts.length >= TIMESTAMP_COUNT); in validateProfileData()
124 assertTrue("VSYNC happened before INTENDED_VSYNC", in validateProfileData()
126 assertTrue("HandleInputStart happened before VSYNC", in validateProfileData()
128 assertTrue("AnimationStart happened before HandleInputStart", in validateProfileData()
130 assertTrue("PerformTraversalsStart happened before AnimationStart", in validateProfileData()
[all …]
/cts/tests/tests/view/src/android/view/cts/
DKeyCharacterMapTest.java22 import static org.junit.Assert.assertTrue;
62 assertTrue(mKeyCharacterMap.isPrintingKey(KeyEvent.KEYCODE_0)); in testIsPrintingKey()
63 assertTrue(mKeyCharacterMap.isPrintingKey(KeyEvent.KEYCODE_1)); in testIsPrintingKey()
64 assertTrue(mKeyCharacterMap.isPrintingKey(KeyEvent.KEYCODE_2)); in testIsPrintingKey()
65 assertTrue(mKeyCharacterMap.isPrintingKey(KeyEvent.KEYCODE_3)); in testIsPrintingKey()
66 assertTrue(mKeyCharacterMap.isPrintingKey(KeyEvent.KEYCODE_4)); in testIsPrintingKey()
67 assertTrue(mKeyCharacterMap.isPrintingKey(KeyEvent.KEYCODE_5)); in testIsPrintingKey()
68 assertTrue(mKeyCharacterMap.isPrintingKey(KeyEvent.KEYCODE_6)); in testIsPrintingKey()
69 assertTrue(mKeyCharacterMap.isPrintingKey(KeyEvent.KEYCODE_7)); in testIsPrintingKey()
70 assertTrue(mKeyCharacterMap.isPrintingKey(KeyEvent.KEYCODE_8)); in testIsPrintingKey()
[all …]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
DComputeTest.java58 assertTrue(b2.x == 1); in testJavaVectorTypes()
59 assertTrue(b2.y == 2); in testJavaVectorTypes()
65 assertTrue(b3.x == 1); in testJavaVectorTypes()
66 assertTrue(b3.y == 2); in testJavaVectorTypes()
67 assertTrue(b3.z == 3); in testJavaVectorTypes()
74 assertTrue(b4.x == 1); in testJavaVectorTypes()
75 assertTrue(b4.y == 2); in testJavaVectorTypes()
76 assertTrue(b4.z == 3); in testJavaVectorTypes()
77 assertTrue(b4.w == 4); in testJavaVectorTypes()
83 assertTrue(d2.x == 1.0); in testJavaVectorTypes()
[all …]
/cts/tests/tests/media/drmframework/src/android/media/drmframework/cts/
DMediaDrmMockTest.java74 assertTrue(MediaDrm.isCryptoSchemeSupported(mockScheme, mimeType)); in testIsMimeTypeSupported()
96 assertTrue(gotException); in testMediaDrmConstructorFails()
107 assertTrue(md.getPropertyString("test-string").equals("test-value")); in testStringProperties()
119 assertTrue(Arrays.equals(md.getPropertyByteArray("test-array"), testArray)); in testByteArrayProperties()
135 assertTrue(gotException); in testMissingPropertyString()
151 assertTrue(gotException); in testNullPropertyString()
167 assertTrue(gotException); in testMissingPropertyByteArray()
183 assertTrue(gotException); in testNullPropertyByteArray()
209 assertTrue(gotException); in testBadSession()
225 assertTrue(gotException); in testNullSession()
[all …]
/cts/tests/tests/bluetooth/src/android/bluetooth/cts/
DBluetoothLeAudioTest.java27 import static org.junit.Assert.assertTrue;
106 assertTrue(groupId == mTestGroupId); in onCodecConfigChanged()
107 assertTrue(status == TEST_CODEC_STATUS); in onCodecConfigChanged()
112 assertTrue(groupId == mTestGroupId); in onGroupNodeAdded()
113 assertTrue(device == mTestDevice); in onGroupNodeAdded()
118 assertTrue(groupId == mTestGroupId); in onGroupNodeRemoved()
119 assertTrue(device == mTestDevice); in onGroupNodeRemoved()
124 assertTrue(groupId == mTestGroupId); in onGroupStatusChanged()
125 assertTrue(groupStatus == mTestGroupStatus); in onGroupStatusChanged()
130 assertTrue(groupId == mTestGroupId); in onGroupStreamStatusChanged()
[all …]
DBluetoothVolumeControlTest.java28 import static org.junit.Assert.assertTrue;
100 assertTrue(device == mTestDevice); in onVolumeOffsetChanged()
101 assertTrue(instanceId == mTestVocsInstanceId); in onVolumeOffsetChanged()
102 assertTrue(volumeOffset == mTestVolumeOffset); in onVolumeOffsetChanged()
108 assertTrue(device == mTestDevice); in onVolumeOffsetChanged()
109 assertTrue(volumeOffset == mTestVolumeOffset); in onVolumeOffsetChanged()
118 assertTrue(device == mTestDevice); in onVolumeOffsetAudioLocationChanged()
119 assertTrue(instanceId == mTestVocsInstanceId); in onVolumeOffsetAudioLocationChanged()
120 assertTrue(audioLocation == mTestAudioLocation); in onVolumeOffsetAudioLocationChanged()
129 assertTrue(device == mTestDevice); in onVolumeOffsetAudioDescriptionChanged()
[all …]
/cts/tests/tests/telephony/current/src/android/telephony/cts/
DPhoneNumberUtilsTest.java23 import static org.junit.Assert.assertTrue;
301 assertTrue(PhoneNumberUtils.is12Key(c)); in testJudgeMethods()
302 assertTrue(PhoneNumberUtils.isDialable(c)); in testJudgeMethods()
303 assertTrue(PhoneNumberUtils.isISODigit(c)); in testJudgeMethods()
304 assertTrue(PhoneNumberUtils.isNonSeparator(c)); in testJudgeMethods()
305 assertTrue(PhoneNumberUtils.isReallyDialable(c)); in testJudgeMethods()
308 assertTrue(PhoneNumberUtils.is12Key(c)); in testJudgeMethods()
309 assertTrue(PhoneNumberUtils.isDialable(c)); in testJudgeMethods()
310 assertTrue(PhoneNumberUtils.isNonSeparator(c)); in testJudgeMethods()
311 assertTrue(PhoneNumberUtils.isReallyDialable(c)); in testJudgeMethods()
[all …]
DTelephonyFeatureFlagsTest.java22 import static org.junit.Assert.assertTrue;
82 assertTrue("FEATURE_TELEPHONY_RADIO_ACCESS requires " in testFeatureFlagsValidation()
97 assertTrue("FEATURE_TELEPHONY_SUBSCRIPTION requires " in testFeatureFlagsValidation()
104 assertTrue("FEATURE_TELEPHONY_CALLING requires " in testFeatureFlagsValidation()
112 assertTrue("FEATURE_TELEPHONY_MESSAGING requires " in testFeatureFlagsValidation()
119 assertTrue("FEATURE_TELEPHONY_DATA requires " in testFeatureFlagsValidation()
126 assertTrue("FEATURE_TELEPHONY_CARRIERLOCK requires " in testFeatureFlagsValidation()
132 assertTrue("FEATURE_TELEPHONY_EUICC requires " in testFeatureFlagsValidation()
138 assertTrue("FEATURE_TELEPHONY_EUICC_MEP requires " in testFeatureFlagsValidation()
144 assertTrue("FEATURE_TELEPHONY_IMS requires " in testFeatureFlagsValidation()
[all …]
/cts/tests/tests/wifi/src/android/net/wifi/cts/
DSupplicantStateTest.java29 assertTrue(SupplicantState.isValidState(SupplicantState.DISCONNECTED)); in testIsValidState()
30 assertTrue(SupplicantState.isValidState(SupplicantState.INACTIVE)); in testIsValidState()
31 assertTrue(SupplicantState.isValidState(SupplicantState.SCANNING)); in testIsValidState()
32 assertTrue(SupplicantState.isValidState(SupplicantState.ASSOCIATING)); in testIsValidState()
33 assertTrue(SupplicantState.isValidState(SupplicantState.ASSOCIATED)); in testIsValidState()
34 assertTrue(SupplicantState.isValidState(SupplicantState.FOUR_WAY_HANDSHAKE)); in testIsValidState()
35 assertTrue(SupplicantState.isValidState(SupplicantState.GROUP_HANDSHAKE)); in testIsValidState()
36 assertTrue(SupplicantState.isValidState(SupplicantState.COMPLETED)); in testIsValidState()
37 assertTrue(SupplicantState.isValidState(SupplicantState.DORMANT)); in testIsValidState()
/cts/tests/location/common/src/android/location/cts/common/
DTestMeasurementUtil.java157 softAssert.assertTrue("time_ns: clock value", in assertGnssClockFields()
168 softAssert.assertTrue("TimeNanos - FullBiasNanos = GpsTimeNanos: clock value", in assertGnssClockFields()
207 softAssert.assertTrue("FullBiasNanos are the same at the same timeNanos", in assertGnssClockHasConsistentFullBiasNanos()
234 softAssert.assertTrue("state: Satellite code sync state", in assertAllGnssMeasurementMandatoryFields()
250 softAssert.assertTrue("time_offset_ns: Time offset", in assertAllGnssMeasurementMandatoryFields()
256 softAssert.assertTrue("c_n0_dbhz: Carrier-to-noise density", in assertAllGnssMeasurementMandatoryFields()
263 softAssert.assertTrue("pseudorange_rate_uncertainty_mps: " + in assertAllGnssMeasurementMandatoryFields()
277 softAssert.assertTrue("carrier_phase: Carrier phase", in assertAllGnssMeasurementMandatoryFields()
286 softAssert.assertTrue("carrier_phase_uncertainty: 1-Sigma uncertainty of the " + in assertAllGnssMeasurementMandatoryFields()
295 softAssert.assertTrue("multipath_indicator: GNSS Measurement's multipath indicator", in assertAllGnssMeasurementMandatoryFields()
[all …]

12345678910>>...86