mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
Made test class names consistent with other tests
Make test classes final Ensure all test method names are consistent
This commit is contained in:
+2
-2
@@ -13,7 +13,7 @@ import static org.junit.Assert.assertEquals;
|
||||
*
|
||||
* @author Graham
|
||||
*/
|
||||
public class TestGamePacketEncoder {
|
||||
public class GamePacketEncoderTests {
|
||||
|
||||
/**
|
||||
* Tests the {@link GamePacketEncoder#encode} method.
|
||||
@@ -21,7 +21,7 @@ public class TestGamePacketEncoder {
|
||||
* @throws Exception If an error occurs.
|
||||
*/
|
||||
@Test
|
||||
public void testEncode() throws Exception {
|
||||
public void encode() throws Exception {
|
||||
// generates 243, 141, 34, -223, 121...
|
||||
IsaacRandom random = new IsaacRandom(new int[] { 0, 0, 0, 0 });
|
||||
GamePacketEncoder encoder = new GamePacketEncoder(random);
|
||||
Reference in New Issue
Block a user