lib: hide some code from coverage checking

Parts that are not easy / useful to unit-test
This commit is contained in:
Dirk-Jan C. Binnema
2023-09-10 10:12:07 +03:00
parent 85ad35bd8e
commit 192c67262a
4 changed files with 16 additions and 2 deletions

View File

@ -50,6 +50,8 @@
using namespace Mu;
/* LCOV_EXCL_START */
/// output stream to _either_ a file or to a stringstream
struct OutputStream {
/**
@ -1160,3 +1162,5 @@ Server::invoke(const std::string& expr) noexcept
{
return priv_->invoke(expr);
}
/* LCOV_EXCL_STOP */