Exemplo n.º 1
0
def test_get_network_endpoints_botleneck_001(bottleneck_001):
    scenario = Simulation(bottleneck_001)
    sim_endpoints = scenario.get_network_endpoints()
    END_POINTS = ("Ext_In", "Ext_Out")
    sim_endpoints == END_POINTS
Exemplo n.º 2
0
 def test_get_network_endpoints_botleneck_001(self):
     sim_case = Simulation(self.mocks_path)
     sim_endpoints = sim_case.get_network_endpoints()
     END_POINTS = ("Ext_In", "Ext_Out")
     self.assertTupleEqual(sim_endpoints, END_POINTS)