transcendental-lisp/test/table/SymbolTableTester.java

59 lines
1.4 KiB
Java
Raw Normal View History

2016-12-19 13:29:31 -05:00
package table;
import static org.junit.Assert.*;
import org.junit.*;
import sexpression.*;
public class SymbolTableTester {
private SymbolTable symbolTable;
@Before
public void setUp() throws Exception {
symbolTable = new SymbolTable();
}
@Test
public void lookupSymbolNotInTable() {
assertFalse(symbolTable.contains("symbol"));
}
@Test
public void lookupSymbolInTable() {
symbolTable.put("symbol", Symbol.T);
assertTrue(symbolTable.contains("symbol"));
}
@Test
public void retrieveSymbolValue() {
symbolTable.put("symbol", Symbol.T);
assertEquals(symbolTable.get("symbol"), Symbol.T);
}
@Test
public void redefineSymbolValue() {
symbolTable.put("symbol", Symbol.T);
symbolTable.put("symbol", Nil.getUniqueInstance());
assertEquals(symbolTable.get("symbol"), Nil.getUniqueInstance());
}
@Test
public void checkParentTableIsCorrect() {
SymbolTable childTable = new SymbolTable(symbolTable);
assertEquals(childTable.getParent(), symbolTable);
}
@Test
public void lookupSymbolInParentTable() {
symbolTable.put("symbol", Symbol.T);
SymbolTable childTable = new SymbolTable(symbolTable);
SymbolTable parentTable = childTable.getParent();
assertEquals(parentTable.get("symbol"), Symbol.T);
}
}