/NRefactory/ICSharpCode.NRefactory.VB.Tests/Parser/Statements/ErrorStatementTests.cs

http://github.com/icsharpcode/ILSpy · C# · 23 lines · 19 code · 2 blank · 2 comment · 0 complexity · 132e9754addaa34845a06a10dbe5861b MD5 · raw file

  1. // Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
  2. // This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
  3. using System;
  4. using System.IO;
  5. using NUnit.Framework;
  6. using ICSharpCode.NRefactory.VB.Parser;
  7. using ICSharpCode.NRefactory.VB.Ast;
  8. namespace ICSharpCode.NRefactory.VB.Tests.Ast
  9. {
  10. [TestFixture]
  11. public class ErrorStatementTests
  12. {
  13. #region VB.NET
  14. [Test]
  15. public void VBNetErrorStatementTest()
  16. {
  17. ErrorStatement errorStatement = ParseUtil.ParseStatement<ErrorStatement>("Error a");
  18. }
  19. #endregion
  20. }
  21. }