mirror of
https://github.com/tonytins/cstdotnet.git
synced 2025-03-22 00:12:19 +00: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);*/
|
|
}
|
|
}
|
|
}
|