Home
last modified time | relevance | path

Searched defs:underTest2 (Results 1 – 11 of 11) sorted by relevance

/xr/runtime/runtime/src/test/kotlin/androidx/xr/runtime/math/
DRayTest.kt37 val underTest2 = Ray(Vector3(1f, 2f, 3f), Vector3(4f, 5f, 6f)) in equals_sameValues_returnsTrue() constant
45 val underTest2 = Ray(Vector3(3f, 4f, 5f), Vector3(6f, 7f, 8f)) in equals_differentValues_returnsFalse() constant
55 val underTest2 = Ray(Vector3(1f, 2f, 3f), Vector3(4f, 5f, 6f)) in hashCodeEquals_sameValues_returnsTrue() constant
63 val underTest2 = Ray(Vector3(3f, 4f, 5f), Vector3(6f, 7f, 8f)) in hashCodeEquals_differentValues_returnsFalse() constant
73 val underTest2 = Ray(Vector3(3f, 4f, 5f), Vector3(6f, 7f, 8f)) in constructorEquals_expectedToString_returnsTrue() constant
84 val underTest2 = Ray(underTest) in constructor_fromRay_returnsSameValues() constant
DVector2Test.kt37 val underTest2 = Vector2(1f, 2f) in equals_sameValues_returnsTrue() constant
45 val underTest2 = Vector2(9f, 10f) in equals_differentValues_returnsFalse() constant
55 val underTest2 = Vector2(1f, 2f) in hashCodeEquals_sameValues_returnsTrue() constant
63 val underTest2 = Vector2(9f, 10f) in hashCodeEquals_differentValues_returnsFalse() constant
73 val underTest2 = Vector2() in constructorEquals_expectedToString_returnsTrue() constant
82 val underTest2 = underTest in constructor_fromVector2_returnsSameValues() constant
102 val underTest2 = Vector2(3f, 4f) in add_returnsTwoVectorsAddedTogether() constant
111 val underTest2 = Vector2(3f, 4f) in subtract_returnsTwoVectorsSubtracted() constant
120 val underTest2 = Vector2(3f, 4f) in multiply_returnsTwoVectorsMultiplied() constant
129 val underTest2 = Vector2(3f, 4f) in cross_returnsCrossProductOfTwoVectors() constant
[all …]
DVector3Test.kt36 val underTest2 = Vector3(1f, 2f, 3f) in equals_sameValues_returnsTrue() constant
44 val underTest2 = Vector3(9f, 10f, 11f) in equals_differentValues_returnsFalse() constant
54 val underTest2 = Vector3(1f, 2f, 3f) in hashCodeEquals_sameValues_returnsTrue() constant
62 val underTest2 = Vector3(9f, 10f, 11f) in hashCodeEquals_differentValues_returnsFalse() constant
72 val underTest2 = Vector3() in constructorEquals_expectedToString_returnsTrue() constant
81 val underTest2 = underTest in constructor_fromVector3_returnsSameValues() constant
130 val underTest2 = Vector3(3f, 4f, 5f) in multiply_returnsTwoVectorsMultiplied() constant
139 val underTest2 = Vector3(3f, -4f, 5f) in dot_returnsDotProductOfTwoVectors() constant
148 val underTest2 = Vector3(3f, -4f, 5f) in cross_returnsCrossProductOfTwoVectors() constant
254 val underTest2 = Vector3(-2f, 4f, -3f) in divide_returnsVectorDividedByVector() constant
[all …]
DVector4Test.kt36 val underTest2 = Vector4(1f, 2f, 3f, 4f) in equals_sameValues_returnsTrue() constant
44 val underTest2 = Vector4(9f, 10f, 11f, 12f) in equals_differentValues_returnsFalse() constant
54 val underTest2 = Vector4(1f, 2f, 3f, 4f) in hashCodeEquals_sameValues_returnsTrue() constant
62 val underTest2 = Vector4(9f, 10f, 11f, 12f) in hashCodeEquals_differentValues_returnsFalse() constant
72 val underTest2 = Vector4() in constructorEquals_expectedToString_returnsTrue() constant
81 val underTest2 = underTest in constructor_fromVector4_returnsSameValues() constant
134 val underTest2 = Vector4(3f, 4f, 5f, 6f) in multiply_returnsTwoVectorsMultiplied() constant
143 val underTest2 = Vector4(3f, -4f, 5f, 2f) in dot_returnsDotProductOfTwoVectors() constant
198 val underTest2 = Vector4(-2f, 4f, -3f, 2f) in divide_returnsVectorDividedByVector() constant
258 val underTest2 = Vector4(2f, 2f, 5f, 3f) in distance_returnsDistanceBetweenTwoVectors() constant
[all …]
DPoseTest.kt40 val underTest2 = in equals_sameValues_returnsTrue() constant
50 val underTest2 = in equals_differentValues_returnsFalse() constant
62 val underTest2 = in hashCodeEquals_sameValues_returnsTrue() constant
72 val underTest2 = in hashCodeEquals_differentValues_returnsFalse() constant
84 val underTest2 = Pose() in constructorEquals_expectedToString_returnsTrue() constant
108 val underTest2 = Pose(underTest) in constructor_fromPose_returnsSameValues() constant
120 val underTest2 = in compose_returnsPoseWithTranslationAndRotation() constant
226 val underTest2 = in lerp_returnsInterpolatedPose() constant
345 val underTest2 = underTest.copy() in copy_returnsCopyOfPose() constant
DMatrix4Test.kt77 val underTest2 = underTest in constructor_fromMatrix4_returnsSameValues() constant
88 val underTest2 = in equals_sameValues_returnsTrue() constant
102 val underTest2 = in equals_differentValues_returnsFalse() constant
133 val underTest2 = Vector3() in equals_differentObjects_returnsFalse() constant
144 val underTest2 = in hashCodeEquals_sameValues_returnsTrue() constant
158 val underTest2 = in hashCodeEquals_differentValues_returnsFalse() constant
189 val underTest2 = Vector3() in hashCodeEquals_differentObjects_returnsFalse() constant
455 val underTest2 = in multiply_returnsMultipliedMatrix1() constant
487 val underTest2 = in multiply_returnsMultipliedMatrix2() constant
521 val underTest2 = in multiply_returnsMultipliedMatrix3() constant
[all …]
DQuaternionTest.kt33 val underTest2 = Quaternion.Identity in constructor_noArguments_returnsIdentityQuaternion() constant
40 val underTest2 = Quaternion(1f, 2f, 3f, 4f) in equals_sameValues_returnsTrue() constant
48 val underTest2 = Quaternion(9f, 10f, 11f, 12f) in equals_differentValues_returnsFalse() constant
58 val underTest2 = Quaternion(1f, 2f, 3f, 4f) in hashCodeEquals_sameValues_returnsTrue() constant
66 val underTest2 = Quaternion(9f, 10f, 11f, 12f) in hashCodeEquals_differentValues_returnsFalse() constant
76 val underTest2 = Quaternion() in constructorEquals_expectedToString_returnsTrue() constant
85 val underTest2 = Quaternion(underTest) in constructor_fromQuaternion_returnsSameValues() constant
93 val underTest2 = Quaternion(underTest) in constructor_fromVector4_returnsSameValues() constant
241 val underTest2 = Quaternion(5f, -6f, 7f, -8f) in times_returnsTwoQuaternionsMultiplied() constant
258 val underTest2 = Quaternion(2f, 4f, 6f, 8f) in interpolate_returnsInterpolatedQuaternion() constant
[all …]
/xr/scenecore/scenecore/src/test/java/androidx/xr/scenecore/
DSpatialVisibilityTest.kt37 val underTest2 = SpatialVisibility(SpatialVisibility.WITHIN_FOV) in equals_differentObjectsSameValues_returnsTrue() constant
45 val underTest2 = SpatialVisibility(SpatialVisibility.OUTSIDE_FOV) in equals_differentObjectsDifferentValues_returnsFalse() constant
53 val underTest2 = SpatialVisibility(SpatialVisibility.WITHIN_FOV) in hashCode_differentObjectsSameValues_returnsSameHashCode() constant
61 val underTest2 = SpatialVisibility(SpatialVisibility.OUTSIDE_FOV) in hashCode_differentObjectsDifferentValues_returnsDifferentHashCodes() constant
/xr/runtime/runtime/src/test/kotlin/androidx/xr/runtime/internal/
DHitResultTest.kt49 val underTest2 = HitResult(distance, pose, trackable) in equals_differentObjectsSameValues_returnsTrue() constant
57 val underTest2 = HitResult(2.0f, Pose(), TestTrackable()) in equals_differentObjectsDifferentValues_returnsFalse() constant
68 val underTest2 = HitResult(distance, pose, trackable) in hashCode_differentObjectsSameValues_returnsSameHashCode() constant
76 val underTest2 = HitResult(2.0f, Pose(), TestTrackable()) in hashCode_differentObjectsDifferentValues_returnsDifferentHashCodes() constant
/xr/arcore/arcore/src/test/kotlin/androidx/xr/arcore/
DHitResultTest.kt56 val underTest2 = HitResult(distance, pose, trackable) in equals_differentObjectsSameValues_returnsTrue() constant
64 val underTest2 = HitResult(2.0f, Pose(), TestTrackable()) in equals_differentObjectsDifferentValues_returnsFalse() constant
75 val underTest2 = HitResult(distance, pose, trackable) in hashCode_differentObjectsSameValues_returnsSameHashCode() constant
83 val underTest2 = HitResult(2.0f, Pose(), TestTrackable()) in hashCode_differentObjectsDifferentValues_returnsDifferentHashCodes() constant
DAnchorTest.kt306 val underTest2 = Anchor(runtimeAnchor, xrResourcesManager) in <lambda>() constant
315 val underTest2 = in <lambda>() constant
325 val underTest2 = Anchor(runtimeAnchor, xrResourcesManager) in <lambda>() constant
334 val underTest2 = in <lambda>() constant