Skip to content

Commit

Permalink
Add triplet link test
Browse files Browse the repository at this point in the history
  • Loading branch information
Konard committed Jan 18, 2024
1 parent 6d1488a commit 386b876
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion csharp/Platform.Protocols.Lino.Tests/ParserTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,17 @@ public static void ParseAndStringifyTest()
var target = links.Format();
Assert.Equal(source, target);
}


[Fact]
public static void TripletSingleLinkTest()
{
var source = @"(papa has car)";
var parser = new Parser();
var links = parser.Parse(source);
var target = links.Format();
Assert.Equal(source, target);
}

[Fact]
public static void BugTest1()
{
Expand Down

0 comments on commit 386b876

Please sign in to comment.