BadScript 2
Loading...
Searching...
No Matches
TokenTests.cs
Go to the documentation of this file.
1// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See License.md in the project root for license information.
2
3using Xunit;
5
7{
8 public class TokenTests
9 {
10 [Fact]
11 public void Equality()
12 {
13 Assert.True(Token.Name("nametok").Equals(Token.Name("nametok")));
14 }
15 }
16}
static Token Name(string text)
Definition Token.cs:25