mirror of
https://github.com/tonytins/cstdotnet.git
synced 2025-03-23 00:32:20 +00:00
18 lines
363 B
C#
18 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);*/
|
||
|
}
|
||
|
}
|
||
|
}
|