Let the Unit testing begin

Could use some more test cases on the make test, though
This commit is contained in:
NuclearW
2012-07-06 22:37:34 -04:00
parent dce7d8fdd3
commit 646bb32965
3 changed files with 44 additions and 3 deletions

View File

@ -0,0 +1,35 @@
package com.gmail.nossr50.util.blockmeta;
import static org.junit.Assert.assertEquals;
import org.junit.Before;
import org.junit.Test;
public class PrimitiveExChunkletStoreTest {
byte addresses[][] = new byte[16][16];
@Before
public void populateAddresses() {
for(int x = 0; x < 16; x++) {
for(int z = 0; z < 16; z++) {
addresses[x][z] = PrimitiveExChunkletStore.makeAddressByte(x, z);
}
}
}
@Test
public void addressMakeTest() {
assertEquals(addresses[0][0], 0);
assertEquals(addresses[15][15], -1);
}
@Test
public void addressReverseTest() {
for(int x = 0; x < 16; x++) {
for(int z = 0; z < 16; z++) {
assertEquals(x, PrimitiveExChunkletStore.addressByteX(addresses[x][z]));
assertEquals(z, PrimitiveExChunkletStore.addressByteZ(addresses[x][z]));
}
}
}
}