GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: tmp_project/OptionParser/TESTS/TEST_ParserOptionString/main.cpp Lines: 12 12 100.0 %
Date: 2024-12-09 15:30:52 Branches: 16 16 100.0 %

Line Branch Exec Source
1
2
/***************************************
3
	Auteur : Pierre Aubert
4
	Mail : pierre.aubert@lapp.in2p3.fr
5
	Licence : CeCILL-C
6
****************************************/
7
8
#include "phoenix_assert.h"
9
#include "phoenix_check.h"
10
#include "OptionParser.h"
11
12
///Create the OptionParser of this program
13
/**	@return OptionParser of this program
14
*/
15
2
OptionParser createOptionParser(){
16
4
	OptionParser parser(true, "1.0.0");
17

2
	parser.addOption("input", "i", OptionType::FILENAME, true, "Required option");
18
2
	return parser;
19
}
20
21
2
int main(int argc, char** argv){
22
4
	OptionParser parser = createOptionParser();
23
2
	parser.parseArgument(argc, argv);
24
25
2
	const OptionMode & defaultMode = parser.getDefaultMode();
26
2
	std::string inputFile("");
27
2
	defaultMode.getValue(inputFile, "input");
28
// 	std::cout << "input = '" << inputFile << "'" << std::endl;
29
30

2
	phoenix_assert(inputFile == "fileName.txt");
31
2
	return 0;
32
}
33
34