예제 #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
 protected Test(TestingSystem context, IConfigSectionNode conf)
     : base(context, conf)
 {
     m_SerializerSetupConfig = conf[CONFIG_SERIALIZER_SETUP_SECTION];
 }
예제 #3
0
 protected Serializer(TestingSystem context, IConfigSectionNode conf) : base(context, conf)
 {
 }
예제 #4
0
 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];
 }