62 lines
1.3 KiB
Java
62 lines
1.3 KiB
Java
package table;
|
|
|
|
import static org.junit.Assert.*;
|
|
import static sexpression.Nil.NIL;
|
|
import static sexpression.Symbol.T;
|
|
|
|
import org.junit.*;
|
|
|
|
public class SymbolTableTester {
|
|
|
|
private SymbolTable symbolTable;
|
|
|
|
@Before
|
|
public void setUp() {
|
|
symbolTable = new SymbolTable();
|
|
}
|
|
|
|
@Test
|
|
public void lookupSymbolNotInTable() {
|
|
assertFalse(symbolTable.contains("symbol"));
|
|
}
|
|
|
|
@Test
|
|
public void lookupSymbolInTable() {
|
|
symbolTable.put("symbol", T);
|
|
|
|
assertTrue(symbolTable.contains("symbol"));
|
|
}
|
|
|
|
@Test
|
|
public void retrieveSymbolValue() {
|
|
symbolTable.put("symbol", T);
|
|
|
|
assertEquals(T, symbolTable.get("symbol"));
|
|
}
|
|
|
|
@Test
|
|
public void redefineSymbolValue() {
|
|
symbolTable.put("symbol", T);
|
|
symbolTable.put("symbol", NIL);
|
|
|
|
assertEquals(NIL, symbolTable.get("symbol"));
|
|
}
|
|
|
|
@Test
|
|
public void checkParentTableIsCorrect() {
|
|
SymbolTable childTable = new SymbolTable(symbolTable);
|
|
|
|
assertEquals(symbolTable, childTable.getParent());
|
|
}
|
|
|
|
@Test
|
|
public void lookupSymbolInParentTable() {
|
|
symbolTable.put("symbol", T);
|
|
SymbolTable childTable = new SymbolTable(symbolTable);
|
|
SymbolTable parentTable = childTable.getParent();
|
|
|
|
assertEquals(T, parentTable.get("symbol"));
|
|
}
|
|
|
|
}
|