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

39 lines
681 B
C
Raw Normal View History

#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