@Test
public void typesProperty() {
ReadOnlyListProperty<PathElementType> property = this.shape.typesProperty();
assertNotNull(property);
assertEquals(5, property.size());
assertSame(PathElementType.MOVE_TO, property.get(0));
assertSame(PathElementType.LINE_TO, property.get(1));
assertSame(PathElementType.QUAD_TO, property.get(2));
assertSame(PathElementType.CURVE_TO, property.get(3));
assertSame(PathElementType.CLOSE, property.get(4));
}
Path3ifxTest.java 文件源码
java
阅读 28
收藏 0
点赞 0
评论 0
项目:afc
作者:
评论列表
文章目录