/cts/tests/tests/graphics/src/android/graphics/cts/ |
D | ColorMatrixTest.java | 49 assertEquals(mSrc[i], fA1[i]); in testColorMatrix() 58 assertEquals(fA1[i], fA2[i]); in testColorMatrix() 69 assertEquals(20, ret.length); in testReset() 73 assertEquals(1.0f, ret[i]); in testReset() 77 assertEquals(0.0f, ret[i]); in testReset() 95 assertEquals(20, ret.length); in testSet1() 98 assertEquals((float) i, ret[19 - i]); in testSet1() 116 assertEquals(20, ret.length); in testSet2() 119 assertEquals((float) i, ret[19 - i]); in testSet2() 134 assertEquals(-1.0f, ret[6], TOLERANCE); in testSetRotate() [all …]
|
D | RectFTest.java | 60 assertEquals(10.0f, mRectF.left); in testSort() 61 assertEquals(10.0f, mRectF.top); in testSort() 62 assertEquals(5.0f, mRectF.right); in testSort() 63 assertEquals(5.0f, mRectF.bottom); in testSort() 66 assertEquals(5.0f, mRectF.left); in testSort() 67 assertEquals(5.0f, mRectF.top); in testSort() 68 assertEquals(10.0f, mRectF.right); in testSort() 69 assertEquals(10.0f, mRectF.bottom); in testSort() 77 assertEquals(1.0f, mRectF.left); in testSet1() 78 assertEquals(2.0f, mRectF.top); in testSet1() [all …]
|
D | RectTest.java | 53 assertEquals(1, mRect.left); in testSet1() 54 assertEquals(2, mRect.top); in testSet1() 55 assertEquals(3, mRect.right); in testSet1() 56 assertEquals(4, mRect.bottom); in testSet1() 65 assertEquals(1, mRect.left); in testSet2() 66 assertEquals(2, mRect.top); in testSet2() 67 assertEquals(3, mRect.right); in testSet2() 68 assertEquals(4, mRect.bottom); in testSet2() 75 assertEquals(0, mRect.left); in testIntersects1() 76 assertEquals(0, mRect.top); in testIntersects1() [all …]
|
D | RegionIteratorTest.java | 42 assertEquals(1, rect.left); in testNext() 43 assertEquals(1, rect.top); in testNext() 44 assertEquals(10, rect.right); in testNext() 45 assertEquals(10, rect.bottom); in testNext() 48 assertEquals(1, rect.left); in testNext() 49 assertEquals(1, rect.top); in testNext() 50 assertEquals(1, rect.right); in testNext() 51 assertEquals(1, rect.bottom); in testNext() 59 assertEquals(1, rect.left); in testNext() 60 assertEquals(1, rect.top); in testNext() [all …]
|
D | CameraTest.java | 53 assertEquals(0.22291021f, f[0]); in testTranslate() 54 assertEquals(0.0f, f[1]); in testTranslate() 55 assertEquals(2.2291021f, f[2]); in testTranslate() 56 assertEquals(0.0f, f[3]); in testTranslate() 57 assertEquals(0.22291021f, f[4]); in testTranslate() 58 assertEquals(-6.241486f, f[5]); in testTranslate() 59 assertEquals(0.0f, f[6]); in testTranslate() 60 assertEquals(0.0f, f[7]); in testTranslate() 61 assertEquals(1.0f, f[8]); in testTranslate() 75 assertEquals(1.0f, f[0]); in testRotateX() [all …]
|
D | ColorTest.java | 24 assertEquals(0xff, Color.alpha(Color.RED)); in testAlpha() 25 assertEquals(0xff, Color.alpha(Color.YELLOW)); in testAlpha() 30 assertEquals(Color.RED, Color.argb(0xff, 0xff, 0x00, 0x00)); in testArgb() 31 assertEquals(Color.YELLOW, Color.argb(0xff, 0xff, 0xff, 0x00)); in testArgb() 35 assertEquals(0x00, Color.blue(Color.RED)); in testBlue() 36 assertEquals(0x00, Color.blue(Color.YELLOW)); in testBlue() 40 assertEquals(0x00, Color.green(Color.RED)); in testGreen() 41 assertEquals(0xff, Color.green(Color.GREEN)); in testGreen() 56 assertEquals(Color.RED, Color.HSVToColor(hsv)); in testHSVToColor1() 71 assertEquals(Color.RED, Color.HSVToColor(0xff, hsv)); in testHSVToColor2() [all …]
|
/cts/tests/tests/view/src/android/view/cts/ |
D | GravityTest.java | 52 assertEquals(19, mOutRect.left); in testApply() 53 assertEquals(21, mOutRect.right); in testApply() 54 assertEquals(20, mOutRect.top); in testApply() 55 assertEquals(23, mOutRect.bottom); in testApply() 57 assertEquals(24, mOutRect.left); in testApply() 58 assertEquals(26, mOutRect.right); in testApply() 59 assertEquals(25, mOutRect.top); in testApply() 60 assertEquals(28, mOutRect.bottom); in testApply() 62 assertEquals(19, mOutRect.left); in testApply() 63 assertEquals(21, mOutRect.right); in testApply() [all …]
|
D | ViewGroup_MarginLayoutParamsTest.java | 78 assertEquals(20, mMarginLayoutParams.leftMargin); in testSetMargins() 79 assertEquals(30, mMarginLayoutParams.topMargin); in testSetMargins() 80 assertEquals(120, mMarginLayoutParams.rightMargin); in testSetMargins() 81 assertEquals(140, mMarginLayoutParams.bottomMargin); in testSetMargins() 83 assertEquals(20, mMarginLayoutParams.getMarginStart()); in testSetMargins() 84 assertEquals(120, mMarginLayoutParams.getMarginEnd()); in testSetMargins() 86 assertEquals(false, mMarginLayoutParams.isMarginRelative()); in testSetMargins() 95 assertEquals(20, mMarginLayoutParams.getMarginStart()); in testSetMarginsRelative() 96 assertEquals(30, mMarginLayoutParams.topMargin); in testSetMarginsRelative() 97 assertEquals(120, mMarginLayoutParams.getMarginEnd()); in testSetMarginsRelative() [all …]
|
D | MotionEventTest.java | 78 assertEquals(mDownTime, mMotionEvent1.getDownTime()); in testObtain1() 79 assertEquals(mEventTime, mMotionEvent1.getEventTime()); in testObtain1() 80 assertEquals(MotionEvent.ACTION_DOWN, mMotionEvent1.getAction()); in testObtain1() 81 assertEquals(X_3F, mMotionEvent1.getX(), DELTA); in testObtain1() 82 assertEquals(Y_4F, mMotionEvent1.getY(), DELTA); in testObtain1() 83 assertEquals(X_3F, mMotionEvent1.getRawX(), DELTA); in testObtain1() 84 assertEquals(Y_4F, mMotionEvent1.getRawY(), DELTA); in testObtain1() 85 assertEquals(META_STATE, mMotionEvent1.getMetaState()); in testObtain1() 86 assertEquals(0, mMotionEvent1.getDeviceId()); in testObtain1() 87 assertEquals(0, mMotionEvent1.getEdgeFlags()); in testObtain1() [all …]
|
/cts/tests/tests/libcorelegacy22/src/android/util/cts/ |
D | FloatMathTest.java | 24 assertEquals(5.0f, FloatMath.sqrt(25)); in testSqrt() 25 assertEquals(7, FloatMath.sqrt(49), 0); in testSqrt() 26 assertEquals(10, FloatMath.sqrt(100), 0); in testSqrt() 27 assertEquals(0, FloatMath.sqrt(0), 0); in testSqrt() 28 assertEquals(1, FloatMath.sqrt(1), 0); in testSqrt() 32 assertEquals(78, FloatMath.floor(78.89f), 0); in testFloor() 33 assertEquals(-79, FloatMath.floor(-78.89f), 0); in testFloor() 34 assertEquals(7.0f, FloatMath.floor(7.2f)); in testFloor() 35 assertEquals(-7.0f, FloatMath.floor(-6.3f)); in testFloor() 39 assertEquals(79, FloatMath.ceil(78.89f), 0); in testCeil() [all …]
|
/cts/tests/tests/text/src/android/text/cts/ |
D | SelectionTest.java | 30 assertEquals(-1, Selection.getSelectionStart(builder)); in testGetSelectionStart() 33 assertEquals(3, Selection.getSelectionStart(builder)); in testGetSelectionStart() 36 assertEquals(3, Selection.getSelectionStart(builder)); in testGetSelectionStart() 39 assertEquals(5, Selection.getSelectionStart(builder)); in testGetSelectionStart() 41 assertEquals(-1, Selection.getSelectionStart(null)); in testGetSelectionStart() 47 assertEquals(-1, Selection.getSelectionEnd(builder)); in testGetSelectionEnd() 50 assertEquals(10, Selection.getSelectionEnd(builder)); in testGetSelectionEnd() 53 assertEquals(8, Selection.getSelectionEnd(builder)); in testGetSelectionEnd() 56 assertEquals(8, Selection.getSelectionEnd(builder)); in testGetSelectionEnd() 58 assertEquals(-1, Selection.getSelectionStart(null)); in testGetSelectionEnd() [all …]
|
D | StaticLayoutTest.java | 124 assertEquals(LAYOUT_TEXT, layout.getText()); in testBuilder() 125 assertEquals(mDefaultPaint, layout.getPaint()); in testBuilder() 126 assertEquals(DEFAULT_OUTER_WIDTH, layout.getWidth()); in testBuilder() 128 assertEquals(TextDirectionHeuristics.FIRSTSTRONG_LTR, in testBuilder() 130 assertEquals(Alignment.ALIGN_NORMAL, layout.getAlignment()); in testBuilder() 131 assertEquals(0.0f, layout.getSpacingAdd()); in testBuilder() 132 assertEquals(1.0f, layout.getSpacingMultiplier()); in testBuilder() 133 assertEquals(DEFAULT_OUTER_WIDTH, layout.getEllipsizedWidth()); in testBuilder() 150 assertEquals(LAYOUT_TEXT_SINGLE_LINE, layout.getText()); in testBuilder() 158 assertEquals(DEFAULT_ALIGN, layout.getAlignment()); in testBuilder() [all …]
|
/cts/tests/tests/database/src/android/database/cts/ |
D | MatrixCursorTest.java | 56 assertEquals(0, mMatrixCursor.getCount()); in testNewRow() 59 assertEquals(1, mMatrixCursor.getCount()); in testNewRow() 67 assertEquals(Integer.MIN_VALUE, mMatrixCursor.getInt(COLUMN0_INDEX)); in testNewRow() 73 assertEquals(Integer.MIN_VALUE, mMatrixCursor.getInt(COLUMN0_INDEX)); in testNewRow() 75 assertEquals(0, mMatrixCursor.getInt(COLUMN1_INDEX)); in testNewRow() 80 assertEquals(Integer.MIN_VALUE, mMatrixCursor.getInt(COLUMN0_INDEX)); in testNewRow() 82 assertEquals(0, mMatrixCursor.getInt(COLUMN1_INDEX)); in testNewRow() 84 assertEquals(Integer.MAX_VALUE, mMatrixCursor.getInt(COLUMN2_INDEX)); in testNewRow() 94 assertEquals(2, mMatrixCursor.getCount()); in testNewRow() 98 assertEquals(0, mMatrixCursor.getCount()); in testAddRow() [all …]
|
/cts/tests/tests/net/src/android/net/cts/ |
D | NetworkInfo_DetailedStateTest.java | 26 assertEquals(DetailedState.AUTHENTICATING, DetailedState.valueOf("AUTHENTICATING")); in testValueOf() 27 assertEquals(DetailedState.CONNECTED, DetailedState.valueOf("CONNECTED")); in testValueOf() 28 assertEquals(DetailedState.CONNECTING, DetailedState.valueOf("CONNECTING")); in testValueOf() 29 assertEquals(DetailedState.DISCONNECTED, DetailedState.valueOf("DISCONNECTED")); in testValueOf() 30 assertEquals(DetailedState.DISCONNECTING, DetailedState.valueOf("DISCONNECTING")); in testValueOf() 31 assertEquals(DetailedState.FAILED, DetailedState.valueOf("FAILED")); in testValueOf() 32 assertEquals(DetailedState.IDLE, DetailedState.valueOf("IDLE")); in testValueOf() 33 assertEquals(DetailedState.OBTAINING_IPADDR, DetailedState.valueOf("OBTAINING_IPADDR")); in testValueOf() 34 assertEquals(DetailedState.SCANNING, DetailedState.valueOf("SCANNING")); in testValueOf() 35 assertEquals(DetailedState.SUSPENDED, DetailedState.valueOf("SUSPENDED")); in testValueOf() [all …]
|
/cts/tests/tests/util/src/android/util/cts/ |
D | SparseLongArrayTest.java | 35 assertEquals(0, sparseArray.size()); in testSparseArrayWithDefaultCapacity() 41 assertEquals(i + 1, sparseArray.size()); in testSparseArrayWithDefaultCapacity() 45 assertEquals(i, sparseArray.get(KEYS[i])); in testSparseArrayWithDefaultCapacity() 49 assertEquals(sparseArray.indexOfValue(VALUES[i]), sparseArray.indexOfKey(KEYS[i])); in testSparseArrayWithDefaultCapacity() 56 assertEquals(oldValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity() 57 assertEquals(LENGTH, sparseArray.size()); in testSparseArrayWithDefaultCapacity() 59 assertEquals(newValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity() 60 assertEquals(LENGTH, sparseArray.size()); in testSparseArrayWithDefaultCapacity() 62 assertEquals(VALUE_FOR_NON_EXISTED_KEY, in testSparseArrayWithDefaultCapacity() 64 assertEquals(0L, sparseArray.get(NON_EXISTED_KEY)); // the default value is 0 in testSparseArrayWithDefaultCapacity() [all …]
|
D | SparseIntArrayTest.java | 38 assertEquals(0, sparseIntArray.size()); in testSparseIntArrayWithDefaultCapacity() 43 assertEquals(i + 1, sparseIntArray.size()); in testSparseIntArrayWithDefaultCapacity() 46 assertEquals(VALUES[i], sparseIntArray.get(KEYS[i])); in testSparseIntArrayWithDefaultCapacity() 49 assertEquals(sparseIntArray.indexOfValue(VALUES[i]), in testSparseIntArrayWithDefaultCapacity() 57 assertEquals(oldValue, sparseIntArray.get(existKey)); in testSparseIntArrayWithDefaultCapacity() 58 assertEquals(13, sparseIntArray.size()); in testSparseIntArrayWithDefaultCapacity() 60 assertEquals(newValue, sparseIntArray.get(existKey)); in testSparseIntArrayWithDefaultCapacity() 61 assertEquals(13, sparseIntArray.size()); in testSparseIntArrayWithDefaultCapacity() 63 assertEquals(VALUE_FOR_NON_EXISTED_KEY, in testSparseIntArrayWithDefaultCapacity() 65 assertEquals(0, sparseIntArray.get(NON_EXISTED_KEY)); // the default value is 0 in testSparseIntArrayWithDefaultCapacity() [all …]
|
D | SparseBooleanArrayTest.java | 36 assertEquals(0, sparseBooleanArray.size()); in testSparseBooleanArrayWithDefaultCapacity() 41 assertEquals(i + 1, sparseBooleanArray.size()); in testSparseBooleanArrayWithDefaultCapacity() 44 assertEquals(VALUES[i], sparseBooleanArray.get(KEYS[i])); in testSparseBooleanArrayWithDefaultCapacity() 52 assertEquals(VALUES[i], sparseBooleanArray.valueAt(keyIndex)); in testSparseBooleanArrayWithDefaultCapacity() 54 assertEquals(expectPos, sparseBooleanArray.indexOfValue(VALUES[i])); in testSparseBooleanArrayWithDefaultCapacity() 61 assertEquals(oldValue, sparseBooleanArray.get(existKey)); in testSparseBooleanArrayWithDefaultCapacity() 62 assertEquals(13, sparseBooleanArray.size()); in testSparseBooleanArrayWithDefaultCapacity() 64 assertEquals(newValue, sparseBooleanArray.get(existKey)); in testSparseBooleanArrayWithDefaultCapacity() 65 assertEquals(13, sparseBooleanArray.size()); in testSparseBooleanArrayWithDefaultCapacity() 67 assertEquals(VALUE_FOR_NON_EXISTED_KEY, in testSparseBooleanArrayWithDefaultCapacity() [all …]
|
D | LongSparseArrayTest.java | 35 assertEquals(0, sparseArray.size()); in testSparseArrayWithDefaultCapacity() 41 assertEquals(i + 1, sparseArray.size()); in testSparseArrayWithDefaultCapacity() 45 assertEquals(new Integer(i), sparseArray.get(KEYS[i])); in testSparseArrayWithDefaultCapacity() 49 assertEquals(sparseArray.indexOfValue(VALUES[i]), sparseArray.indexOfKey(KEYS[i])); in testSparseArrayWithDefaultCapacity() 56 assertEquals(oldValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity() 57 assertEquals(LENGTH, sparseArray.size()); in testSparseArrayWithDefaultCapacity() 59 assertEquals(newValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity() 60 assertEquals(LENGTH, sparseArray.size()); in testSparseArrayWithDefaultCapacity() 62 assertEquals(VALUE_FOR_NON_EXISTED_KEY, in testSparseArrayWithDefaultCapacity() 68 assertEquals(size + 1, sparseArray.size()); in testSparseArrayWithDefaultCapacity() [all …]
|
D | SparseArrayTest.java | 31 assertEquals(0, sparseArray.size()); in testSparseArrayWithDefaultCapacity() 37 assertEquals(i + 1, sparseArray.size()); in testSparseArrayWithDefaultCapacity() 41 assertEquals(new Integer(i), sparseArray.get(KEYS[i])); in testSparseArrayWithDefaultCapacity() 45 assertEquals(sparseArray.indexOfValue(VALUES[i]), sparseArray.indexOfKey(KEYS[i])); in testSparseArrayWithDefaultCapacity() 52 assertEquals(oldValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity() 53 assertEquals(LENGTH, sparseArray.size()); in testSparseArrayWithDefaultCapacity() 55 assertEquals(newValue, sparseArray.get(existKey)); in testSparseArrayWithDefaultCapacity() 56 assertEquals(LENGTH, sparseArray.size()); in testSparseArrayWithDefaultCapacity() 58 assertEquals(VALUE_FOR_NON_EXISTED_KEY, in testSparseArrayWithDefaultCapacity() 64 assertEquals(size + 1, sparseArray.size()); in testSparseArrayWithDefaultCapacity() [all …]
|
/cts/tests/tests/tv/src/android/media/tv/cts/ |
D | TvTrackInfoTest.java | 40 assertEquals(TvTrackInfo.TYPE_AUDIO, info.getType()); in testAudioTrackInfoOp() 41 assertEquals("id_audio", info.getId()); in testAudioTrackInfoOp() 42 assertEquals(2, info.getAudioChannelCount()); in testAudioTrackInfoOp() 43 assertEquals(48000, info.getAudioSampleRate()); in testAudioTrackInfoOp() 44 assertEquals("eng", info.getLanguage()); in testAudioTrackInfoOp() 45 assertEquals(bundle.get("testTrue"), info.getExtra().get("testTrue")); in testAudioTrackInfoOp() 46 assertEquals(0, info.describeContents()); in testAudioTrackInfoOp() 53 assertEquals(TvTrackInfo.TYPE_AUDIO, infoFromParcel.getType()); in testAudioTrackInfoOp() 54 assertEquals("id_audio", infoFromParcel.getId()); in testAudioTrackInfoOp() 55 assertEquals(2, infoFromParcel.getAudioChannelCount()); in testAudioTrackInfoOp() [all …]
|
/cts/tests/tests/telecom/src/android/telecom/cts/ |
D | DataObjectUnitTests.java | 72 assertEquals(accountHandle, account.getAccountHandle()); in testPhoneAccount() 73 assertEquals(tel, account.getAddress()); in testPhoneAccount() 74 assertEquals(tel, account.getSubscriptionAddress()); in testPhoneAccount() 75 assertEquals(PhoneAccount.CAPABILITY_CALL_PROVIDER, account.getCapabilities()); in testPhoneAccount() 76 assertEquals(Color.RED, account.getHighlightColor()); in testPhoneAccount() 77 assertEquals(ACCOUNT_LABEL, account.getShortDescription()); in testPhoneAccount() 78 assertEquals(ACCOUNT_LABEL, account.getLabel()); in testPhoneAccount() 79 assertEquals(Arrays.asList("tel"), account.getSupportedUriSchemes()); in testPhoneAccount() 80 assertEquals(phoneIcon.toString(), account.getIcon().toString()); in testPhoneAccount() 81 assertEquals(0, account.describeContents()); in testPhoneAccount() [all …]
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/rsub_int_lit8/ |
D | Test_rsub_int_lit8.java | 37 assertEquals("Subtest_1 is failed", -4, t.run(8)); in testN1() 38 assertEquals("Subtest_2 is failed",45, t.run1(15)); in testN1() 39 assertEquals("Subtest_3 is failed",0, t.run2(20)); in testN1() 40 assertEquals("Subtest_4 is failed",-35, t.run3(10)); in testN1() 41 assertEquals("Subtest_5 is failed",-20, t.run4(-50)); in testN1() 42 assertEquals("Subtest_6 is failed",20, t.run5(-70)); in testN1() 50 assertEquals("Subtest_1 is failed",123, t.run(0)); in testN2() 51 assertEquals("Subtest_2 is failed",-123, t.run1(0)); in testN2() 52 assertEquals("Subtest_3 is failed",-15, t.run2(15)); in testN2() 53 assertEquals("Subtest_4 is failed",85, t.run2(-85)); in testN2() [all …]
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/rsub_int/ |
D | Test_rsub_int.java | 37 assertEquals("Subtest_1 is failed", -4, t.run(8)); in testN1() 38 assertEquals("Subtest_2 is failed",45, t.run1(15)); in testN1() 39 assertEquals("Subtest_3 is failed",0, t.run2(20)); in testN1() 40 assertEquals("Subtest_4 is failed",-35, t.run3(10)); in testN1() 41 assertEquals("Subtest_5 is failed",-20, t.run4(-50)); in testN1() 42 assertEquals("Subtest_6 is failed",20, t.run5(-70)); in testN1() 50 assertEquals("Subtest_1 is failed",255, t.run(0)); in testN2() 51 assertEquals("Subtest_2 is failed",-32768, t.run1(0)); in testN2() 52 assertEquals("Subtest_3 is failed",-15, t.run2(15)); in testN2() 53 assertEquals("Subtest_4 is failed",123, t.run2(-123)); in testN2() [all …]
|
/cts/tests/tests/telephony/src/android/telephony/cts/ |
D | NeighboringCellInfoTest.java | 40 assertEquals(NETWORK_TYPE_EDGE, nc.getNetworkType()); in testNeighboringCellInfo() 41 assertEquals(rssi, nc.getRssi()); in testNeighboringCellInfo() 42 assertEquals(0xfff, nc.getLac()); in testNeighboringCellInfo() 43 assertEquals(0xffff, nc.getCid()); in testNeighboringCellInfo() 44 assertEquals(NeighboringCellInfo.UNKNOWN_CID, nc.getPsc()); in testNeighboringCellInfo() 47 assertEquals(NETWORK_TYPE_UMTS, nc.getNetworkType()); in testNeighboringCellInfo() 48 assertEquals(rssi, nc.getRssi()); in testNeighboringCellInfo() 49 assertEquals(NeighboringCellInfo.UNKNOWN_CID, nc.getCid()); in testNeighboringCellInfo() 50 assertEquals(NeighboringCellInfo.UNKNOWN_CID, nc.getLac()); in testNeighboringCellInfo() 51 assertEquals(0x1ff, nc.getPsc()); in testNeighboringCellInfo() [all …]
|
/cts/tests/tests/view/src/android/view/animation/cts/ |
D | CycleInterpolatorTest.java | 68 assertEquals(CYCLE_ALPHA_DURATION, anim.getDuration()); in testCycyleInterpolator() 82 assertEquals(0.0f, alpha1, ALPHA_DELTA); in testCycyleInterpolator() 86 assertEquals(1.0f, alpha2, ALPHA_DELTA); in testCycyleInterpolator() 93 assertEquals(-1.0f, alpha4, ALPHA_DELTA); in testCycyleInterpolator() 97 assertEquals(0.0f, alpha5, ALPHA_DELTA); in testCycyleInterpolator() 104 assertEquals(alpha1, alpha3, ALPHA_DELTA); in testCycyleInterpolator() 105 assertEquals(alpha3, alpha5, ALPHA_DELTA); in testCycyleInterpolator() 106 assertEquals(alpha2, -alpha4, ALPHA_DELTA); in testCycyleInterpolator() 107 assertEquals(delta1, -delta2, ALPHA_DELTA); in testCycyleInterpolator() 108 assertEquals(delta2, delta3, ALPHA_DELTA); in testCycyleInterpolator() [all …]
|