Added Search in the advanced settings

This commit is contained in:
Jindra Petřík
2022-11-14 08:31:47 +01:00
parent 48096290da
commit cfca80c409
6 changed files with 311 additions and 153 deletions

View File

@@ -16,9 +16,11 @@
*/
package com.jpexs.decompiler.flash.gui;
import java.awt.Component;
import java.util.HashMap;
import java.util.ResourceBundle;
import javax.swing.JComboBox;
import javax.swing.JLabel;
import org.testng.annotations.Test;
/**
@@ -30,6 +32,6 @@ public class AdvancedSettingsTest {
@Test
public void testAdvancedSettginsDialog() {
ResourceBundle resourceBundle = ResourceBundle.getBundle(AppStrings.getResourcePath(AdvancedSettingsDialog.class));
AdvancedSettingsDialog.getCategories(new HashMap<>(), new HashMap<>(), new JComboBox<>(), resourceBundle);
AdvancedSettingsDialog.getCategories("", "", new HashMap<>(), new HashMap<>(), "", new HashMap<>(), new HashMap<>(), new HashMap<>(), new HashMap<>(), new JComboBox<>(), resourceBundle);
}
}