Add unit testing for DNS_Mgr and related classes

This commit is contained in:
Tim Wojtulewicz 2022-01-14 10:21:26 -07:00
parent 824bc372c5
commit e6e9144da6
8 changed files with 870 additions and 311 deletions

View file

@ -824,6 +824,7 @@ public:
// so errors can arise for compound sets such as sets-of-sets.
// See https://github.com/zeek/zeek/issues/151.
bool EqualTo(const TableVal& v) const;
bool EqualTo(const TableValPtr& v) const { return EqualTo(*(v.get())); }
// Returns true if this set is a subset (not necessarily proper)
// of the given set.