Files
openvehicle-api/tests/unit_tests/idl_compiler/parser_test.h

50 lines
1.0 KiB
C
Raw Normal View History

2026-03-27 14:12:49 +01:00
/********************************************************************************
* Copyright (c) 2025-2026 ZF Friedrichshafen AG
*
* This program and the accompanying materials are made available under the
* terms of the Apache License Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
*
* Contributors:
* Erik Verhoeven - initial API and implementation
********************************************************************************/
#ifndef PARSER_TEST_H
#define PARSER_TEST_H
/**
2026-01-16 11:40:02 +01:00
* @brief Test class for instantiation tests.
*/
class CParserTest : public testing::Test
{
public:
/**
2026-01-16 11:40:02 +01:00
* @brief Constructor
*/
CParserTest() = default;
/**
2026-01-16 11:40:02 +01:00
* @brief Set up the test suite.
*/
static void SetUpTestCase();
/**
2026-01-16 11:40:02 +01:00
* @brief Tear down the test suite.
*/
static void TearDownTestCase();
/**
2026-01-16 11:40:02 +01:00
* @brief Test setup.
*/
void SetUp() override;
/**
2026-01-16 11:40:02 +01:00
* @brief Test teardown.
*/
void TearDown() override;
};
#endif // define PARSER_TEST_H