Added missing files

This commit is contained in:
Jim
2023-09-08 17:56:24 +01:00
parent 6ef53e7a96
commit 663005977d
7 changed files with 749 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EngineTests.Parser_Tests
{
/// <summary>
/// Class for testing the TreeNodes
/// </summary>
[TestClass]
public class NodesTests
{
/// <summary>
/// Test the Parser on a basic List of tokens
/// </summary>
[TestMethod]
public void TestParserBasicExpression()
{
}
}
}