-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpr_test_fixture.hpp
More file actions
55 lines (38 loc) · 1003 Bytes
/
pr_test_fixture.hpp
File metadata and controls
55 lines (38 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#pragma once
#include "parser/test/fixtures/pr_test_file_wrapper.hpp"
#include <string>
#include <vector>
//------------------------------------------------------------------------------
namespace fs
{
class Factory;
class File;
}
//------------------------------------------------------------------------------
namespace parser
{
class IncludeFile;
}
//------------------------------------------------------------------------------
namespace parser::test
{
//------------------------------------------------------------------------------
class ParserFixture
{
public:
using IncludeFiles = std::vector< IncludeFile >;
ParserFixture();
~ParserFixture();
FileWrapper & file();
void parse();
const IncludeFiles & getResults() const;
std::string getTempFileName() const;
private:
void init();
private:
FileWrapper m_fileWrapper;
std::unique_ptr< fs::Factory > m_factory;
IncludeFiles m_files;
};
//------------------------------------------------------------------------------
}