using System; namespace Mono.Linker.Tests.Cases.Expectations.Assertions { /// /// Verifies that a resource exists in the test case assembly /// [AttributeUsage (AttributeTargets.Class, AllowMultiple = true, Inherited = false)] public class KeptResourceAttribute : KeptAttribute { public KeptResourceAttribute (string name) { if (string.IsNullOrEmpty (name)) throw new ArgumentException ("Value cannot be null or empty.", nameof (name)); } } }