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 CustomAttributeSamples() { return GenerateSectionTests(@"CustomAttributes\CustomAttributeSamples.cs"); } [Test] public void CustomAttributesMultiTest() { ValidateFileRoundtrip(@"CustomAttributes\CustomAttributes.cs"); } [Test] public void AssemblyCustomAttributesMultiTest() { ValidateFileRoundtrip(@"CustomAttributes\AssemblyCustomAttribute.cs"); } } }