コード例 #1
0
ファイル: test_symTable.py プロジェクト: Tedworthy/ATLAST
 def test_getParent(self):
   table = SymTable()
   table._parent = SymTable()
   assert table.getParent() is not None
コード例 #2
0
ファイル: test_symTable.py プロジェクト: Tedworthy/ATLAST
 def test_hasParent(self):
   table = SymTable()
   table._parent = SymTable()
   assert(table.hasParent())