Draft
Conversation
a78da31 to
b6278a6
Compare
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #208 +/- ##
==========================================
+ Coverage 56.14% 58.50% +2.35%
==========================================
Files 71 75 +4
Lines 3482 3639 +157
Branches 2165 2271 +106
==========================================
+ Hits 1955 2129 +174
+ Misses 575 548 -27
- Partials 952 962 +10 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
8807a4a to
6e64718
Compare
05572d0 to
4430b14
Compare
094f4da to
b6c0b24
Compare
added 3 commits
February 19, 2026 13:22
f1f2f43 to
f1204d1
Compare
f1204d1 to
7df1a47
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces unit tests for the
StorageManagerandClientManagerclasses and refactors parts of their implementation to improve testability and coverage reporting.Changes
Refactor
ClientManagerfor improved gcovr compatibilityClientManager::ClientDataBuffersto store objects instead of pointers. This allowsgcovrto correctly detect destructor calls for member attributes.ClientDataBuffersto simplify object creation and ensure proper coverage reporting. Previously, move operations were interpreted bygcovras partially covered code.Add unit tests
StorageManagerclass.ClientManagerclass.Improve
StorageManagertestabilityclient_managervariable by passing a reference through theStorageManagerconstructor.client_manager.Bug fix
StorageManager::getPaths()where empty paths were previously added to the returned vector.Build system update
CAPIO-CLdependency fromcapio/server/CMakeLists.txtto the top-level projectCMakeLists.txt, allowing both the server components and the unit tests to compile successfully.