forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
559 B
21 lines
559 B
6 years ago
|
package com.fanruan.api.util;
|
||
|
|
||
6 years ago
|
import com.fanruan.api.report.PaintKit;
|
||
6 years ago
|
import com.fr.base.Style;
|
||
|
import com.fr.plugin.present.fun.StarPainter;
|
||
|
import org.junit.Assert;
|
||
|
import org.junit.Test;
|
||
|
|
||
|
import java.awt.*;
|
||
|
|
||
6 years ago
|
public class PaintKitTest {
|
||
6 years ago
|
|
||
|
@Test
|
||
|
public void value2Image() {
|
||
|
StarPainter star = new StarPainter(1);
|
||
|
Style style = Style.getInstance();
|
||
6 years ago
|
Image image = PaintKit.value2Image(star, 1, style, 30, 50);
|
||
6 years ago
|
Assert.assertEquals(30, image.getWidth(null));
|
||
|
Assert.assertEquals(50, image.getHeight(null));
|
||
|
}
|
||
|
}
|