GCC Code Coverage Report


Directory: ./
File: TESTS/TEST_LIBRARY/test_library.cpp
Date: 2025-11-27 16:25:51
Exec Total Coverage
Lines: 5 5 100.0%
Functions: 2 2 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 /***************************************
2 Auteur : Pierre Aubert
3 Mail : pierre.aubert@lapp.in2p3.fr
4 Licence : CeCILL-C
5 ****************************************/
6
7
8 #include "test_library.h"
9
10 ///Test print function
11 /** @param str : string to be printed
12 */
13 1 void print_arch(const std::string& str){
14 1 std::cout << str << std::endl;
15 1 }
16
17 ///Add values
18 /** @param a : value
19 * @param b : value
20 * @return a + b
21 */
22 1 float addValue(float a, float b){
23 1 return a + b;
24 }
25
26
27