cstdotnet/CSTNet.Tests/UnitTest1.cs
2020-12-08 17:56:38 -05:00

17 lines
363 B
C#

// This project is licensed under the MIT license.
using Xunit;
namespace CSTNet.Tests
{
//
public class UnitTest1
{
[Fact]
public void Test1()
{
/*var file = File.ReadAllText("example.cst");
var example = CaretSeparatedText.Parse(file, 1);
Console.WriteLine(example);*/
}
}
}