blob: b07ca94e68617a24c3e0eae34ca9bcbcf82835f7 (
plain)
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
|
// test-context.h
#ifndef TEST_CONTEXT_H_INCLUDED
#define TEST_CONTEXT_H_INCLUDED
#include "../../source/core/slang-string-util.h"
#include "../../source/core/platform.h"
#include "../../source/core/slang-std-writers.h"
#include "../../source/core/dictionary.h"
#include "../../source/core/slang-test-tool-util.h"
#include "options.h"
class TestContext
{
public:
typedef Slang::TestToolUtil::InnerMainFunc InnerMainFunc;
/// Get the slang session
SlangSession* getSession() const { return m_session; }
SlangResult init();
/// Get the inner main function (from shared library)
InnerMainFunc getInnerMainFunc(const Slang::String& dirPath, const Slang::String& name);
/// Set the function for the shared library
void setInnerMainFunc(const Slang::String& name, InnerMainFunc func);
/// Ctor
TestContext();
/// Dtor
~TestContext();
Options options;
TestReporter* reporter = nullptr;
TestCategorySet categorySet;
protected:
struct SharedLibraryTool
{
Slang::SharedLibrary::Handle m_sharedLibrary;
InnerMainFunc m_func;
};
SlangSession* m_session;
Slang::Dictionary<Slang::String, SharedLibraryTool> m_sharedLibTools;
};
#endif // TEST_CONTEXT_H_INCLUDED
|