use of com.sldeditor.common.vendoroption.minversion.VendorOptionUI in project sldeditor by robward-scisys.
the class VendorOptionUITest method testVendorOptionUI.
@Test
public void testVendorOptionUI() {
VendorOptionUI testObj = new VendorOptionUI(new GetMinimumVersionInterface() {
@Override
public void getMinimumVersion(Object parentObj, Object sldObj, List<VendorOptionPresent> vendorOptionsPresentList) {
}
});
testObj.createUI();
testObj.updatedSLD(null, null);
testObj.vendorOptionsUpdated(null);
testObj.populate(null);
}
Aggregations