Adds some tests for the salvage helper
All checks were successful
EpicKnarvik97/Blacksmith/pipeline/head This commit looks good
All checks were successful
EpicKnarvik97/Blacksmith/pipeline/head This commit looks good
This commit is contained in:
@ -19,9 +19,12 @@ import net.knarcraft.knarlib.formatting.Translator;
|
||||
import net.knarcraft.knarlib.util.UpdateChecker;
|
||||
import org.bukkit.command.PluginCommand;
|
||||
import org.bukkit.configuration.file.FileConfiguration;
|
||||
import org.bukkit.plugin.PluginDescriptionFile;
|
||||
import org.bukkit.plugin.PluginManager;
|
||||
import org.bukkit.plugin.java.JavaPlugin;
|
||||
import org.bukkit.plugin.java.JavaPluginLoader;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.logging.Level;
|
||||
|
||||
/**
|
||||
@ -34,6 +37,22 @@ public class BlacksmithPlugin extends JavaPlugin {
|
||||
private static Translator translator;
|
||||
private static StringFormatter stringFormatter;
|
||||
|
||||
/**
|
||||
* Constructor required for MockBukkit
|
||||
*/
|
||||
@SuppressWarnings("unused")
|
||||
public BlacksmithPlugin() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor required for MockBukkit
|
||||
*/
|
||||
@SuppressWarnings("unused")
|
||||
protected BlacksmithPlugin(JavaPluginLoader loader, PluginDescriptionFile descriptionFile, File dataFolder, File file) {
|
||||
super(loader, descriptionFile, dataFolder, file);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets an instance of the Blacksmith plugin
|
||||
*
|
||||
|
Reference in New Issue
Block a user