summaryrefslogtreecommitdiffstats
path: root/Essentials/test/com/earth2me/essentials/EssentialsTest.java
blob: 26c5c68e9cb973e23e1562df63a74971fe9a5b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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());
		}
	}
}