Searched refs:clonedShape (Results 1 – 4 of 4) sorted by relevance
/cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/ |
D | RoundRectShapeTest.java | 86 RoundRectShape clonedShape = roundRectShape.clone(); in testClone() local 90 assertNotSame(roundRectShape, clonedShape); in testClone() 91 assertEquals(roundRectShape.getWidth(), clonedShape.getWidth()); in testClone() 92 assertEquals(roundRectShape.getHeight(), clonedShape.getHeight()); in testClone()
|
D | PathShapeTest.java | 93 PathShape clonedShape = pathShape.clone(); in testClone() local 97 assertNotSame(pathShape, clonedShape); in testClone() 98 assertEquals(pathShape.getWidth(), clonedShape.getWidth()); in testClone() 99 assertEquals(pathShape.getHeight(), clonedShape.getHeight()); in testClone()
|
D | RectShapeTest.java | 69 RectShape clonedShape = rectShape.clone(); in testClone() local 73 assertNotSame(rectShape, clonedShape); in testClone() 74 assertEquals(rectShape.getWidth(), clonedShape.getWidth()); in testClone() 75 assertEquals(rectShape.getHeight(), clonedShape.getHeight()); in testClone()
|
D | ShapeTest.java | 81 Shape clonedShape = shape.clone(); in testClone() local 85 assertNotSame(shape, clonedShape); in testClone() 86 assertEquals(shape.getWidth(), clonedShape.getWidth()); in testClone() 87 assertEquals(shape.getHeight(), clonedShape.getHeight()); in testClone()
|