Add test scaffolding

This commit is contained in:
2024-01-17 12:40:27 -08:00
parent 8a6973e2cd
commit a6381a981e
3 changed files with 15 additions and 1 deletions

View File

@@ -149,3 +149,7 @@ ConflictSet &ConflictSet::operator=(ConflictSet &&other) noexcept {
impl = std::exchange(other.impl, nullptr);
return *this;
}
#ifdef ENABLE_TESTS
int main(void) { ConflictSet cs{0}; }
#endif