Example #1
0
        protected TestArtifact(TestingSystem context, IConfigSectionNode conf)
        {
            Context = context;

            ConfigAttribute.Apply(this, conf);

            if (m_Name.IsNullOrWhiteSpace())
            {
                m_Name = Guid.NewGuid().ToString();
            }
        }
Example #2
0
 protected Test(TestingSystem context, IConfigSectionNode conf)
     : base(context, conf)
 {
     m_SerializerSetupConfig = conf[CONFIG_SERIALIZER_SETUP_SECTION];
 }
Example #3
0
 protected Serializer(TestingSystem context, IConfigSectionNode conf) : base(context, conf)
 {
 }
Example #4
0
 protected Serializer(TestingSystem context, IConfigSectionNode conf)
     : base(context, conf)
 {
 }
Example #5
0
 protected Test(TestingSystem context, IConfigSectionNode conf) : base(context, conf)
 {
     m_SerializerSetupConfig = conf[CONFIG_SERIALIZER_SETUP_SECTION];
 }