コード例 #1
0
        protected TestArtifact(TestingSystem context, IConfigSectionNode conf)
        {
            Context = context;

            ConfigAttribute.Apply(this, conf);

            if (m_Name.IsNullOrWhiteSpace())
            {
                m_Name = Guid.NewGuid().ToString();
            }
        }
コード例 #2
0
ファイル: Test.cs プロジェクト: huoxudong125/serbench
 protected Test(TestingSystem context, IConfigSectionNode conf)
     : base(context, conf)
 {
     m_SerializerSetupConfig = conf[CONFIG_SERIALIZER_SETUP_SECTION];
 }
コード例 #3
0
ファイル: Serializer.cs プロジェクト: marcosnz/serbench
 protected Serializer(TestingSystem context, IConfigSectionNode conf) : base(context, conf)
 {
 }
コード例 #4
0
ファイル: Serializer.cs プロジェクト: huoxudong125/serbench
 protected Serializer(TestingSystem context, IConfigSectionNode conf)
     : base(context, conf)
 {
 }
コード例 #5
0
ファイル: Test.cs プロジェクト: marcosnz/serbench
 protected Test(TestingSystem context, IConfigSectionNode conf) : base(context, conf)
 {
     m_SerializerSetupConfig = conf[CONFIG_SERIALIZER_SETUP_SECTION];
 }