public void HasAttribute() { Assert.Throws <ArgumentNullException>(() => ObjectExtensions.HasAttribute <AttributeUsageAttribute>(null !)); var theAssemblyTitleAttribute = new AssemblyTitleAttribute("Hello"); Assert.That(theAssemblyTitleAttribute.HasAttribute <AttributeUsageAttribute>(), Is.True); }