/ICSharpCode.Decompiler/Tests/CustomAttributes/CustomAttributeTests.cs

http://github.com/icsharpcode/ILSpy · C# · 30 lines · 27 code · 3 blank · 0 comment · 0 complexity · 529b692666294b32f98845bd2df61d23 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using NUnit.Framework;
  6. namespace ICSharpCode.Decompiler.Tests.CustomAttributes
  7. {
  8. [TestFixture]
  9. public class CustomAttributeTests : DecompilerTestBase
  10. {
  11. [Test]
  12. public void CustomAttributeSamples()
  13. {
  14. ValidateFileRoundtrip(@"CustomAttributes\S_CustomAttributeSamples.cs");
  15. }
  16. [Test]
  17. public void CustomAttributesMultiTest()
  18. {
  19. ValidateFileRoundtrip(@"CustomAttributes\S_CustomAttributes.cs");
  20. }
  21. [Test]
  22. public void AssemblyCustomAttributesMultiTest()
  23. {
  24. ValidateFileRoundtrip(@"CustomAttributes\S_AssemblyCustomAttribute.cs");
  25. }
  26. }
  27. }