Files
MathsEngine/MathEngine/EngineTests/Parser Tests/Nodes/NodesTests.cs
0xJ1M c6b21dcf28 Feature/basic evaluator (#3)
* Refactor

* Updated TreeNode system to use abstract base class and inheritence

* Updated unit test coverage

* Improved code coverage

* Added missing files
2023-09-08 17:58:05 +01:00

25 lines
481 B
C#

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()
{
}
}
}