mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-08-03 02:55:46 +00:00
Fixed manudelsub not correctly selecting the group to remove.
This commit is contained in:
parent
9129386f12
commit
cb41b7ac33
13 changed files with 34 additions and 406 deletions
|
@ -1,45 +0,0 @@
|
|||
package com.earth2me.essentials;
|
||||
|
||||
import junit.framework.TestCase;
|
||||
|
||||
|
||||
public class EssentialsTest extends TestCase
|
||||
{
|
||||
public EssentialsTest(String testName)
|
||||
{
|
||||
super(testName);
|
||||
}
|
||||
|
||||
private static void should(String what)
|
||||
{
|
||||
System.out.println("Essentials should " + what);
|
||||
}
|
||||
|
||||
public void testLoadClasses()
|
||||
{
|
||||
should("make all classes accessible");
|
||||
try
|
||||
{
|
||||
ItemDb itemDb = null;
|
||||
Mob mob = null;
|
||||
NetherPortal netherPortal = null;
|
||||
OfflinePlayer offlinePlayer = null;
|
||||
Settings settings = null;
|
||||
Spawn spawn = null;
|
||||
TargetBlock targetBlock = null;
|
||||
User user = null;
|
||||
assertNull(itemDb);
|
||||
assertNull(mob);
|
||||
assertNull(netherPortal);
|
||||
assertNull(offlinePlayer);
|
||||
assertNull(settings);
|
||||
assertNull(spawn);
|
||||
assertNull(targetBlock);
|
||||
assertNull(user);
|
||||
}
|
||||
catch (Throwable ex)
|
||||
{
|
||||
fail(ex.toString());
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue