using System; namespace MbUnit.ReSharperRunner.Explorer { internal class AttributesNames { public const string TestFixtureBaseAttributeName = "MbUnit.Core.Framework.TestFixturePatternAttribute"; public const string TestBaseAttributeName = "MbUnit.Core.Framework.TestPatternAttribute"; public const string IgnoreAttributeName = "MbUnit.Framework.IgnoreAttribute"; public const string TestCategoryAttributeName = "MbUnit.Framework.TestCategoryAttribute"; public const string FixtureCategoryAttributeName = "MbUnit.Framework.FixtureCategoryAttribute"; public const string RowAttributeName = "MbUnit.Framework.RowAttribute"; } }