Home
last modified time | relevance | path

Searched refs:LINE_TO (Results 1 – 3 of 3) sorted by relevance

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowPathTest.java5 import static org.robolectric.shadows.ShadowPath.Point.Type.LINE_TO;
37 assertEquals(new ShadowPath.Point(2, 3, LINE_TO), lineToPoints.get(0)); in testLineTo()
38 assertEquals(new ShadowPath.Point(3, 4, LINE_TO), lineToPoints.get(1)); in testLineTo()
DShadowCanvasTest.java6 import static org.robolectric.shadows.ShadowPath.Point.Type.LINE_TO;
115 assertEquals(drawnPath.getPoints().get(0), new ShadowPath.Point(10, 10, LINE_TO)); in drawPath_shouldRecordThePathAndThePaint()
136 …Equals(shadowOf(shadow.getDrawnPath(0)).getPoints().get(0), new ShadowPath.Point(10, 10, LINE_TO)); in drawPath_shouldRecordThePointsOfEachPathEvenWhenItIsTheSameInstance()
137 …Equals(shadowOf(shadow.getDrawnPath(1)).getPoints().get(0), new ShadowPath.Point(20, 20, LINE_TO)); in drawPath_shouldRecordThePointsOfEachPathEvenWhenItIsTheSameInstance()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPath.java7 import static org.robolectric.shadows.ShadowPath.Point.Type.LINE_TO;
79 Point point = new Point(x, y, LINE_TO); in lineTo()
168 LINE_TO enumConstant