Exemplo n.º 1
0
        protected TestArtifact(TestingSystem context, IConfigSectionNode conf)
        {
            Context = context;

            ConfigAttribute.Apply(this, conf);

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