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

http://github.com/icsharpcode/ILSpy · C# · 23 lines · 19 code · 2 blank · 2 comment · 0 complexity · 773d87449aed81ddb4473fb89e6344b5 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 OnErrorStatementTest
  12. {
  13. #region VB.NET
  14. [Test]
  15. public void VBNetOnErrorStatementTest()
  16. {
  17. OnErrorStatement onErrorStatement = ParseUtil.ParseStatement<OnErrorStatement>("On Error Goto err");
  18. }
  19. #endregion
  20. }
  21. }