use of com.google.security.zynamics.binnavi.disassembly.CStringReplacement in project binnavi by google.
the class CModuleTest method testCreateOperand.
@Test
public void testCreateOperand() throws CouldntLoadDataException, LoadCancelledException {
m_module.load();
final List<IReference> references = new ArrayList<IReference>();
final COperandTreeNode node = new COperandTreeNode(1, 2, "2", new CStringReplacement("bar"), references, m_sql, m_module.getTypeManager(), m_module.getContent().getTypeInstanceContainer());
assertNotNull(m_module.createOperand(node));
}
Aggregations