def __init__(self, config):
     ReqTagGeneric.__init__(
         self, config, "Rationale",
         set([
             InputModuleTypes.ctstag, InputModuleTypes.reqtag,
             InputModuleTypes.testcase
         ]))
Exemple #2
0
 def __init__(self, config):
     ReqTagGeneric.__init__(
         self, config, "Invented on",
         set([
             InputModuleTypes.ctstag, InputModuleTypes.reqtag,
             InputModuleTypes.testcase
         ]))
Exemple #3
0
    def __init__(self, config):
        ReqTagGeneric.__init__(self, config)

        # Precompute once for all the rewrites
        self.type_keys = []
        for t in self.types:
            self.type_keys.append(t[0])
Exemple #4
0
    def __init__(self, config):
        ReqTagGeneric.__init__(self, config, "Effort estimation",
                               set([
                                   InputModuleTypes.reqtag,
                               ]))

        self.__value_check = self.get_config().get_value_default(
            "requirements.effort_estimation_values_check", True)
Exemple #5
0
    def __init__(self, config):
        ReqTagGeneric.__init__(self, config, "Type",
                               set([InputModuleTypes.reqtag, ]))

        # Precompute once for all the rewrites
        self.type_keys = []
        for t in self.types:
            self.type_keys.append(t[0])
Exemple #6
0
    def __init__(self, config):
        ReqTagGeneric.__init__(self, config, "Type",
                               set([InputModuleTypes.reqtag, ]))

        # Precompute once for all the rewrites
        self.type_keys = []
        for ltype in self.types:
            self.type_keys.append(ltype[0])
Exemple #7
0
 def __init__(self, config):
     ReqTagGeneric.__init__(self, config)
Exemple #8
0
 def __init__(self, config):
     ReqTagGeneric.__init__(self, config, "CE3",
                            set([InputModuleTypes.ctstag, ]))
Exemple #9
0
 def __init__(self, config):
     ReqTagGeneric.__init__(self, config, "Description",
                 set([InputModuleTypes.ctstag, InputModuleTypes.reqtag,
                      InputModuleTypes.testcase]))
Exemple #10
0
 def __init__(self, config):
     ReqTagGeneric.__init__(self, config, "Status",
                            set([InputModuleTypes.reqtag, ]))
Exemple #11
0
 def __init__(self, config):
     ReqTagGeneric.__init__(self, config, "Expected Result",
                            set([InputModuleTypes.testcase]))
Exemple #12
0
 def __init__(self, config):
     ReqTagGeneric.__init__(self, config, "Expected Result",
                            set([InputModuleTypes.testcase]))
Exemple #13
0
 def __init__(self, config):
     ReqTagGeneric.__init__(
         self, config, "Invented by",
         set([InputModuleTypes.ctstag, InputModuleTypes.reqtag,
              InputModuleTypes.testcase]))
Exemple #14
0
 def __init__(self, config):
     ReqTagGeneric.__init__(self, config, "Constraints",
                            set([InputModuleTypes.reqtag, ]))
Exemple #15
0
 def __init__(self, config):
     ReqTagGeneric.__init__(self, config, "Effort estimation",
                            set([InputModuleTypes.reqtag, ]))
Exemple #16
0
 def __init__(self, config):
     ReqTagGeneric.__init__(self, config, "Constraints",
                            set([InputModuleTypes.reqtag, ]))
Exemple #17
0
 def __init__(self, config):
     ReqTagGeneric.__init__(self, config, "History",
                            set([InputModuleTypes.reqtag,
                                 InputModuleTypes.testcase]))