LAS-Read/tests/UnitTest1.cs

23 lines
376 B
C#
Raw Permalink Normal View History

2021-03-13 21:31:51 +13:00
using NUnit.Framework;
using LASFormat;
using System.IO;
namespace Tests
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
FileStream fs = File.OpenRead("C:\\points.las");
LASFile lasFile = new LASFile(fs);
Assert.Pass();
}
}
}