GCC Code Coverage Report


Directory: ./
File: TESTS/TEST_DATA_PROCESSING/ProcessClassSort.cpp
Date: 2025-03-14 12:18:05
Exec Total Coverage
Lines: 2 2 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 /***************************************
2 Auteur : Thibaut Oprinsen & Pierre Aubert
3 Mail : pierre.aubert@lapp.in2p3.fr
4 Licence : CeCILL-C
5 ****************************************/
6
7 #include "ProcessClassSort.h"
8
9 ///Sort the fillShort method of the ProcessClass
10 /** @param processClass : ProcessClass to be processed
11 * @param testShort : short to be processed
12 * @return true on success, false otherwise
13 */
14 1 bool sortFillShort(ProcessClass &processClass, const short &testShort){
15 1 return processClass.fillShort(testShort);
16 }
17