Started implementing parser tests

This commit is contained in:
Pasha Bibko
2025-08-20 21:37:58 +01:00
parent b6db61b2c3
commit 466d861e0b
2 changed files with 17 additions and 3 deletions

10
tests/src/ParserTests.cpp Normal file
View File

@@ -0,0 +1,10 @@
#include <gtest/gtest.h>
// The tests for the parser //
namespace PashaBibko::LXC::Parser
{
TEST(ParserTests, ARE_PARSER_TESTS_COMPILING)
{
EXPECT_TRUE(true);
}
}