Browse Source
Merge in DESIGN/design from ~HARRISON/design:release/10.0 to release/10.0 * commit 'a9baef150c8938a565e9080e8763bb5bb0195e1c': REPORT-29912 组件加密 1、复制过滤的 support 判断条件 2、XCreator 的创建条件feature/big-screen
Harrison
5 years ago
5 changed files with 78 additions and 38 deletions
@ -0,0 +1,17 @@
|
||||
package com.fr.design.designer.creator; |
||||
|
||||
import com.fr.form.ui.EditorHolder; |
||||
import org.junit.Assert; |
||||
import org.junit.Test; |
||||
|
||||
public class XCreatorUtilsTest { |
||||
|
||||
@Test |
||||
public void testCreateXCreator() throws Exception { |
||||
|
||||
XCreator xCreator = XCreatorUtils.createXCreator(new EditorHolder() { |
||||
}); |
||||
|
||||
Assert.assertFalse(xCreator instanceof NullCreator); |
||||
} |
||||
} |
Loading…
Reference in new issue