.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

29 lines
676 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MbUnit.Framework;
namespace ICSharpCode.Decompiler.Tests.CustomAttributes
{
public class CustomAttributeTests : DecompilerTestBase
{
[StaticTestFactory]
public static IEnumerable<Test> CustomAttributeSamples()
{
return GenerateSectionTests(@"CustomAttributes\CustomAttributeSamples.cs");
}
[Test]
public void CustomAttributesMultiTest()
{
ValidateFileRoundtrip(@"CustomAttributes\CustomAttributes.cs");
}
[Test]
public void AssemblyCustomAttributesMultiTest()
{
ValidateFileRoundtrip(@"CustomAttributes\AssemblyCustomAttribute.cs");
}
}
}