19 lines
No EOL
330 B
C#
19 lines
No EOL
330 B
C#
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);
|
|
}
|
|
}
|
|
} |