Files
openvehicle-api/tests/unit_tests/dbc_parser/dbc_parser_test.h

52 lines
1.2 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 COMMANDLINE_PARSER_TEST_H
#define COMMANDLINE_PARSER_TEST_H
#include <support/mem_access.h>
#include <support/interface_ptr.h>
/**
2026-01-16 11:40:02 +01:00
* @brief Test class for instantiation tests.
*/
class CDbcParserTest : public testing::Test
{
public:
/**
2026-01-16 11:40:02 +01:00
* @brief Constructor
*/
CDbcParserTest() = 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 // !defined COMMANDLINE_PARSER_TEST_H