帆软报表设计器源代码。
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.

28 lines
663 B

package com.fr.base;
import com.fr.form.main.Form;
import com.fr.main.impl.WorkBook;
import java.util.Set;
import junit.framework.TestCase;
import org.junit.Assert;
/**
* @author hades
* @version 10.0
* Created by hades on 2020/12/28
*/
public class ClassHelperTest extends TestCase {
public void testGetPluginClassLoaders() {
WorkBook workBook = new WorkBook();
Set<ClassLoader> set = ClassHelper.getPluginClassLoaders(workBook);
Assert.assertEquals(0, set.size());
Form form = new Form();
Set<ClassLoader> set1 = ClassHelper.getPluginClassLoaders(form);
Assert.assertEquals(0, set1.size());
}
}