using NUnit.Framework;
namespace Chernobyl.Dependency
{
[TestFixture, Description("Tests for the GetAttribute types.")]
public class GetAttributeImplTests : GetAttributeTests
{
#region Overridables
///
/// Returns the instance to be tested.
///
/// The instance to be tested.
public override IGetAttribute CreateGetAttribute()
{
return new GetAttribute();
}
#endregion
}
}