Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS will be completely phased out by mid-2025. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 6a75a9ff authored by Michael KRISPER's avatar Michael KRISPER
Browse files

added test file for delauney map

parent d2047f2d
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ using TUGraz.VectoCore.Exceptions;
namespace TUGraz.VectoCore.Utils
{
[JsonObject(MemberSerialization.Fields)]
class DelauneyMap
public class DelauneyMap
{
private readonly List<Point> _points = new List<Point>();
private List<Triangle> _triangles = new List<Triangle>();
......
using Microsoft.VisualStudio.TestTools.UnitTesting;
using TUGraz.VectoCore.Utils;
namespace TUGraz.VectoCore.Tests.Utils
{
[TestClass]
public class DelauneyMapTest
{
[TestMethod]
public void Test_NewDelauneyMap()
{
var map = new DelauneyMap();
}
}
}
......@@ -81,6 +81,7 @@
<DesignTimeSharedInput>True</DesignTimeSharedInput>
<DependentUpon>Settings.settings</DependentUpon>
</Compile>
<Compile Include="Utils\DelauneyMapTest.cs" />
<Compile Include="Utils\TestModalDataWriter.cs" />
</ItemGroup>
<ItemGroup>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment