Made test class names consistent with other tests

Make test classes final

Ensure all test method names are consistent
This commit is contained in:
atomicint
2016-02-08 12:49:44 -05:00
parent e4d01e6e54
commit d2b54bde4d
9 changed files with 64 additions and 67 deletions
@@ -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);