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.
22 lines
552 B
22 lines
552 B
package com.fanruan.api.util; |
|
|
|
import com.fr.base.Style; |
|
import com.fr.plugin.present.fun.StarPainter; |
|
import org.junit.Assert; |
|
import org.junit.Test; |
|
|
|
import java.awt.*; |
|
|
|
import static org.junit.Assert.*; |
|
|
|
public class CellKitTest { |
|
|
|
@Test |
|
public void value2Image() { |
|
StarPainter star = new StarPainter(1); |
|
Style style = Style.getInstance(); |
|
Image image = CellKit.value2Image(star, 1, style, 30, 50); |
|
Assert.assertEquals(30, image.getWidth(null)); |
|
Assert.assertEquals(50, image.getHeight(null)); |
|
} |
|
} |