blob: 8cabc73636e2d56fc44c73bd43892ed6f8f27ae4 [file] [log] [blame]
using NUnit.Framework;
namespace Lucene.Net.Attributes
{
/// <summary>
/// This test was added during the port to .NET to test
/// additional factors that apply specifically to the port.
/// In other words, apply this attribute to the test if it
/// did not exist in Java Lucene.
/// </summary>
public class LuceneNetSpecificAttribute : CategoryAttribute
{
public LuceneNetSpecificAttribute()
: base("LUCENENET")
{
// nothing to do here but invoke the base contsructor.
}
}
}