aboutsummaryrefslogtreecommitdiff
path: root/components/service/locator/standalone/services/test-runner/test_runner_service_context.h
blob: 8474ec22fd1b64c20af5f196c149a2a919f56e14 (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
/*
 * Copyright (c) 2021, Arm Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef STANDALONE_TEST_RUNNER_SERVICE_CONTEXT_H
#define STANDALONE_TEST_RUNNER_SERVICE_CONTEXT_H

#include <service/locator/standalone/standalone_service_context.h>
#include <rpc/direct/direct_caller.h>
#include <service/test_runner/provider/test_runner_provider.h>

class test_runner_service_context : public standalone_service_context
{
public:
    test_runner_service_context(const char *sn);
    virtual ~test_runner_service_context();

private:

    void do_init();
    void do_deinit();

    struct test_runner_provider m_test_runner_provider;
};

#endif /* STANDALONE_TEST_RUNNER_SERVICE_CONTEXT_H */