mirror of
https://github.com/tonytins/cstdotnet.git
synced 2026-02-10 12:14:47 -05:00
17 lines
363 B
C#
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);*/
|
|
}
|
|
}
|
|
}
|