Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge remote-tracking branch 'origin/solomontests'
  • Loading branch information
kjf12002 committed May 1, 2015
2 parents 4e38ddf + b584219 commit 87a6d6c
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
1 change: 1 addition & 0 deletions .classpath
Expand Up @@ -2,5 +2,6 @@
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="output" path="bin"/>
</classpath>
70 changes: 70 additions & 0 deletions src/tests/MockGuiTests.java
@@ -0,0 +1,70 @@
package tests;

import static org.junit.Assert.*;
import MockGui;

import java.awt.Color;

import org.junit.Test;

import junit.framework.TestCase;

public class MockGuiTests extends TestCase{

MockGui mg;
public void setUp(){
int[][] nodes;
int NUM = 6;
nodes = new int[NUM][2];
nodes[0][0] = 1;
nodes[0][1] = 3;
nodes[1][0] = 16;
nodes[1][1] = 3;
nodes[2][0] = 16;
nodes[2][1] = 9;
nodes[3][0] = 4;
nodes[3][1] = 9;
nodes[4][0] = 4;
nodes[4][1] = 15;
nodes[5][0] = 18;
nodes[5][1] = 15;
mg = new MockGui(640, 640, 32, NUM, nodes);
}

@Test
public void testHashX() {
int ans[] = mg.hash(20, 10);

assertEquals(ans[0],640);
//assertEquals(ans[1],320);
}

@Test
public void testHashY(){
int ans[] = mg.hash(20, 10);
assertEquals(ans[1],320);
}

@Test
public void testUnhashX() {
int ans[] = mg.unhash(96, 10);
assertEquals(ans[0],3);
}

@Test
public void testUnhashY() {
int ans[] = mg.unhash(96, 128);
assertEquals(ans[1],4);
}

public void testColor(){
mg.setBackground(Color.BLACK);
Color aColor = mg.getBackground();
assertEquals(aColor, Color.BLACK);
}

public void testTowerSetup(){

}

}

0 comments on commit 87a6d6c

Please sign in to comment.