use of com.google.security.zynamics.binnavi.Tagging.TagType in project binnavi by google.
the class CTagEvaluatorTest method testComplete.
@Test
public void testComplete() {
final NaviNode node = CNaviNodeFactory.get();
final TagType type = TagType.NODE_TAG;
final CTag tag = new CTag(1, "foo", "bar", type, new MockSqlProvider());
assertFalse(CTagEvaluator.evaluate(node, true, tag));
assertFalse(CTagEvaluator.evaluate(node, false, tag));
}
Aggregations