Переименование проектов и оптимизация вычислений / Renaming of projects and optimization of computations
This commit is contained in:
parent
37d86bc4c1
commit
75e5c02609
36 changed files with 177 additions and 379 deletions
18
BasicGeometryTest/BasicGeometryTest.csproj
Normal file
18
BasicGeometryTest/BasicGeometryTest.csproj
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.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="..\BasicGeometry\BasicGeometry.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
19
BasicGeometryTest/F32Vector2Test.cs
Normal file
19
BasicGeometryTest/F32Vector2Test.cs
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
using BasicGeometry;
|
||||
|
||||
namespace BasicGeometryTest
|
||||
{
|
||||
[TestClass]
|
||||
public class FP32Vector2Test
|
||||
{
|
||||
[TestMethod]
|
||||
public void TestInitialization()
|
||||
{
|
||||
FP32Vector2 vector = new FP32Vector2(1.0f, 2.0f);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue