def __init__(self):
        """Constructs the object"""

        # Call base init with the predifined params:
        BaseTestScenario.__init__(self, "dds2466",
                                  "CoFlight requirements eFDPfi_MW_DDS_15")

        self.parser = DDS2466Parser()
    def __init__(self, type):
        """Constructs the object"""

        # Call base init with the predifined params:
        BaseTestScenario.__init__(
            self, "dds2734_" + DDS2734TransLocTestScenario.TEST_TYPES[type], "The transient local test"
        )

        self.type = type
        self.parser = DDS2734TransLocParser()
Exemple #3
0
 def __init__(self, name="", description="", log_root=".", result_file=""):
     # Call base init with the predifined params:
     BaseTestScenario.__init__(self, name, description, log_root,
                               result_file)
     self.scenarious = {
         'c_as_active': 'c',
         'cpp_as_active': 'cpp',
         'cs_as_active': 'cs',
         'java_as_active': 'java'
     }
    def __init__(self):
        """Constructs the object"""

        # Call base init with the predifined params:
        BaseTestScenario.__init__(
            self,
            "dds2466",
            "CoFlight requirements eFDPfi_MW_DDS_15")

        self.parser = DDS2466Parser()
    def __init__(self, type):
        """Constructs the object"""

        # Call base init with the predifined params:
        BaseTestScenario.__init__(
            self, "dds2734_" + DDS2734TransLocTestScenario.TEST_TYPES[type],
            "The transient local test")

        self.type = type
        self.parser = DDS2734TransLocParser()
    def __init__(self, type):
        """Constructs the object"""

        # Call base init with the predifined params:
        BaseTestScenario.__init__(
            self,
            "dds2734_" + DDS2734TestScenario.TEST_TYPES[type],
            "The test case tests the discovery process of the configured networking service")

        self.type   = type
        self.parser = DDS2734Parser()
Exemple #7
0
    def __init__(self, type):
        """Constructs the object"""

        # Call base init with the predifined params:
        BaseTestScenario.__init__(
            self, "dds2734_" + DDS2734TestScenario.TEST_TYPES[type],
            "The test case tests the discovery process of the configured networking service"
        )

        self.type = type
        self.parser = DDS2734Parser()
 def __init__(self, name = "", description = "", log_root = ".", q_steps = 0):
     """Constructs a test scenario."""
     BaseTestScenario.__init__(self, name, description, log_root)
     # Quantity of test scenario steps 
     self.q_steps = q_steps
 def __init__(self, name = "", description = "", log_root = ".", result_file = ""):
     # Call base init with the predifined params:
     BaseTestScenario.__init__(self, name, description, log_root, result_file)
     self.scenarious = {'c_as_active': 'c', 'cpp_as_active': 'cpp', 'cs_as_active': 'cs', 'java_as_active': 'java'} 
 def __init__(self, name="", description="", log_root="."):
     """Constructs a test scenario."""
     BaseTestScenario.__init__(self, name, description, log_root)
 def __init__(self, name="", description="", log_root="."):
     """Constructs a test scenario."""
     BaseTestScenario.__init__(self, name, description, log_root)
 def __init__(self, name="", description="", log_root=".", q_steps=0):
     """Constructs a test scenario."""
     BaseTestScenario.__init__(self, name, description, log_root)
     # Quantity of test scenario steps
     self.q_steps = q_steps