Searched refs:clonedShape (Results 1 – 4 of 4) sorted by relevance
/cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/ |
D | PathShapeTest.java | 97 PathShape clonedShape = pathShape.clone(); in testClone() local 101 assertNotSame(pathShape, clonedShape); in testClone() 102 assertEquals(pathShape.getWidth(), clonedShape.getWidth()); in testClone() 103 assertEquals(pathShape.getHeight(), clonedShape.getHeight()); in testClone()
|
D | ShapeTest.java | 83 Shape clonedShape = shape.clone(); in testClone() local 87 assertNotSame(shape, clonedShape); in testClone() 88 assertEquals(shape.getWidth(), clonedShape.getWidth()); in testClone() 89 assertEquals(shape.getHeight(), clonedShape.getHeight()); in testClone()
|
D | RectShapeTest.java | 73 RectShape clonedShape = rectShape.clone(); in testClone() local 77 assertNotSame(rectShape, clonedShape); in testClone() 78 assertEquals(rectShape.getWidth(), clonedShape.getWidth()); in testClone() 79 assertEquals(rectShape.getHeight(), clonedShape.getHeight()); in testClone()
|
D | RoundRectShapeTest.java | 88 RoundRectShape clonedShape = roundRectShape.clone(); in testClone() local 92 assertNotSame(roundRectShape, clonedShape); in testClone() 93 assertEquals(roundRectShape.getWidth(), clonedShape.getWidth()); in testClone() 94 assertEquals(roundRectShape.getHeight(), clonedShape.getHeight()); in testClone()
|