Add tests for buffer format parsing

This commit is contained in:
baldurk
2022-05-19 14:55:15 +01:00
parent 6b133b437c
commit 07d7bbc1ae
2 changed files with 2178 additions and 0 deletions
File diff suppressed because it is too large Load Diff
+7
View File
@@ -66,6 +66,13 @@ rdcstr DoStringise(const uint32_t &el)
return QString::number(el);
}
// this could be needed for CHECKs in tests
template <>
rdcstr DoStringise(const uint16_t &el)
{
return QString::number(el);
}
// these ones we do by hand as it requires formatting
template <>
rdcstr DoStringise(const ResourceId &el)