Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@293 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
5 changed files with 147 additions and 18 deletions
@ -0,0 +1,125 @@ |
|||||||
|
// <file>
|
||||||
|
// <copyright see="prj:///doc/copyright.txt">2002-2005 AlphaSierraPapa</copyright>
|
||||||
|
// <license see="prj:///doc/license.txt">GNU General Public License</license>
|
||||||
|
// <owner name="none" email=""/>
|
||||||
|
// <version>$Revision: 230 $</version>
|
||||||
|
// </file>
|
||||||
|
|
||||||
|
using System; |
||||||
|
using System.Drawing; |
||||||
|
using System.IO; |
||||||
|
using NUnit.Framework; |
||||||
|
using ICSharpCode.NRefactory.Parser; |
||||||
|
using ICSharpCode.NRefactory.Parser.CSharp; |
||||||
|
using ICSharpCode.NRefactory.PrettyPrinter; |
||||||
|
|
||||||
|
namespace ICSharpCode.NRefactory.Tests.Lexer.VB |
||||||
|
{ |
||||||
|
[TestFixture] |
||||||
|
public class LexerPositionTests |
||||||
|
{ |
||||||
|
ILexer GenerateLexer(string s) |
||||||
|
{ |
||||||
|
return ParserFactory.CreateLexer(SupportedLanguages.VBNet, new StringReader(s)); |
||||||
|
} |
||||||
|
|
||||||
|
[Test] |
||||||
|
public void Test1() |
||||||
|
{ |
||||||
|
ILexer l = GenerateLexer("public"); |
||||||
|
Token t = l.NextToken(); |
||||||
|
Assert.AreEqual(new Point(1, 1), t.Location); |
||||||
|
} |
||||||
|
[Test] |
||||||
|
public void Test2() |
||||||
|
{ |
||||||
|
ILexer l = GenerateLexer("public static"); |
||||||
|
Token t = l.NextToken(); |
||||||
|
t = l.NextToken(); |
||||||
|
Assert.AreEqual(new Point(8, 1), t.Location); |
||||||
|
} |
||||||
|
// [Test]
|
||||||
|
// public void TestReturn()
|
||||||
|
// {
|
||||||
|
// ILexer l = GenerateLexer("public\nstatic");
|
||||||
|
// Token t = l.NextToken();
|
||||||
|
// t = l.NextToken();
|
||||||
|
// Assert.AreEqual(new Point(1, 2), t.Location);
|
||||||
|
// }
|
||||||
|
[Test] |
||||||
|
public void TestSpace() |
||||||
|
{ |
||||||
|
ILexer l = GenerateLexer(" public"); |
||||||
|
Token t = l.NextToken(); |
||||||
|
Assert.AreEqual(new Point(3, 1), t.Location); |
||||||
|
} |
||||||
|
// [Test]
|
||||||
|
// public void TestOctNumber()
|
||||||
|
// {
|
||||||
|
// ILexer l = GenerateLexer("0142");
|
||||||
|
// Token t = l.NextToken();
|
||||||
|
// Assert.AreEqual(new Point(1, 1), t.Location);
|
||||||
|
// }
|
||||||
|
// [Test]
|
||||||
|
// public void TestHexNumber()
|
||||||
|
// {
|
||||||
|
// ILexer l = GenerateLexer("0x142 public");
|
||||||
|
// Token t = l.NextToken();
|
||||||
|
// Assert.AreEqual(new Point(1, 1), t.Location);
|
||||||
|
// t = l.NextToken();
|
||||||
|
// Assert.AreEqual(new Point(7, 1), t.Location);
|
||||||
|
// }
|
||||||
|
// [Test]
|
||||||
|
// public void TestHexNumberChar()
|
||||||
|
// {
|
||||||
|
// ILexer l = GenerateLexer("\'\\x224\' public");
|
||||||
|
// Token t = l.NextToken();
|
||||||
|
// Assert.AreEqual(new Point(1, 1), t.Location);
|
||||||
|
// t = l.NextToken();
|
||||||
|
// Assert.AreEqual(new Point(9, 1), t.Location);
|
||||||
|
// }
|
||||||
|
// [Test]
|
||||||
|
// public void TestFloationPointNumber()
|
||||||
|
// {
|
||||||
|
// ILexer l = GenerateLexer("0.142 public");
|
||||||
|
// Token t = l.NextToken();
|
||||||
|
// Assert.AreEqual(new Point(1, 1), t.Location);
|
||||||
|
// t = l.NextToken();
|
||||||
|
// Assert.AreEqual(new Point(7, 1), t.Location);
|
||||||
|
// }
|
||||||
|
// [Test]
|
||||||
|
// public void TestVerbatimString()
|
||||||
|
// {
|
||||||
|
// ILexer l = GenerateLexer("@\"a\"\"a\" public");
|
||||||
|
// Token t = l.NextToken();
|
||||||
|
// Assert.AreEqual(new Point(1, 1), t.Location);
|
||||||
|
// t = l.NextToken();
|
||||||
|
// Assert.AreEqual(new Point(9, 1), t.Location);
|
||||||
|
// }
|
||||||
|
// [Test]
|
||||||
|
// public void TestNoFloationPointNumber()
|
||||||
|
// {
|
||||||
|
// ILexer l = GenerateLexer("0.a");
|
||||||
|
// Token t = l.NextToken();
|
||||||
|
// Assert.AreEqual(new Point(1, 1), t.Location);
|
||||||
|
// t = l.NextToken();
|
||||||
|
// Assert.AreEqual(new Point(3, 1), t.Location);
|
||||||
|
// }
|
||||||
|
// [Test]
|
||||||
|
// public void TestNumber()
|
||||||
|
// {
|
||||||
|
// ILexer l = GenerateLexer("142\nstatic");
|
||||||
|
// Token t = l.NextToken();
|
||||||
|
// t = l.NextToken();
|
||||||
|
// Assert.AreEqual(new Point(1, 2), t.Location);
|
||||||
|
// }
|
||||||
|
[Test] |
||||||
|
public void TestNumber2() |
||||||
|
{ |
||||||
|
ILexer l = GenerateLexer("14 static"); |
||||||
|
Token t = l.NextToken(); |
||||||
|
t = l.NextToken(); |
||||||
|
Assert.AreEqual(new Point(4, 1), t.Location); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue