Базовая версия библиотеки. Версия 0.2.0-dev
This commit is contained in:
parent
262a4c04e8
commit
3ba55c7524
31 changed files with 7432 additions and 0 deletions
18
GeometryTest/GeometryTest.csproj
Normal file
18
GeometryTest/GeometryTest.csproj
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
|
||||
<IsPackable>false</IsPackable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
|
||||
<PackageReference Include="MSTest.TestAdapter" Version="2.2.7" />
|
||||
<PackageReference Include="MSTest.TestFramework" Version="2.2.7" />
|
||||
<PackageReference Include="coverlet.collector" Version="3.1.0" />
|
||||
<ProjectReference Include="..\Geometry\Geometry.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
19
GeometryTest/Vector2FloatTest.cs
Normal file
19
GeometryTest/Vector2FloatTest.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
using Geometry;
|
||||
|
||||
namespace GeometryTest
|
||||
{
|
||||
[TestClass]
|
||||
public class Vector2FloatTest
|
||||
{
|
||||
[TestMethod]
|
||||
public void TestInitialization()
|
||||
{
|
||||
SPVector2 vector = new SPVector2(1.0f, 2.0f);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue