test fail

This commit is contained in:
Jindra Petřík
2015-05-23 20:12:43 +02:00
parent 34fea786a4
commit dfbe9d94ce

View File

@@ -19,6 +19,7 @@ package com.jpexs.decompiler.flash.gui;
import java.util.HashMap;
import java.util.ResourceBundle;
import javax.swing.JComboBox;
import org.testng.Assert;
import org.testng.annotations.Test;
/**
@@ -32,4 +33,8 @@ public class AdvancedSettingsTest {
ResourceBundle resourceBundle = ResourceBundle.getBundle(AppStrings.getResourcePath(AdvancedSettingsDialog.class));
AdvancedSettingsDialog.getCategories(new HashMap<>(), new HashMap<>(), new JComboBox<>(), resourceBundle);
}
public void testFail() {
Assert.fail("Test");
}
}