コード例 #1
0
ファイル: FixtureMeta.cs プロジェクト: jbtule/PclUnit
        public FixtureMeta(TestFixtureAttributeBase attribute, Type type)
            : this()
        {
            Name = type.Name;
            UniqueName = string.Format("T:{0}.{1}", type.Namespace, type.Name);

            if (attribute != null)
            {
                Description = attribute.GetDescription(type);
                Category = attribute.GetCategories(type);
            }
        }
コード例 #2
0
ファイル: Fixture.cs プロジェクト: jbtule/PclUnit
 public Fixture(TestFixtureAttributeBase attribute, Type type)
     : base(attribute, type)
 {
     Type = type;
     Attribute = attribute;
 }