summaryrefslogtreecommitdiff
path: root/cesar
diff options
context:
space:
mode:
Diffstat (limited to 'cesar')
-rw-r--r--cesar/test_general/station/scenario/av/py/sc02_stas_communication.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/cesar/test_general/station/scenario/av/py/sc02_stas_communication.py b/cesar/test_general/station/scenario/av/py/sc02_stas_communication.py
index 668b614e87..5ea912f29d 100644
--- a/cesar/test_general/station/scenario/av/py/sc02_stas_communication.py
+++ b/cesar/test_general/station/scenario/av/py/sc02_stas_communication.py
@@ -30,22 +30,6 @@ class TestStationsComm(unittest.TestCase):
self.failUnless (send_check_datas (self.csi, self.csi.avln_get (0)))
self.csi.uninit_test_bed ()
- def testCommunication2StasWithSNR (self):
- """Communication between 2 stations with Noise on the channel.
-
- 1. Add noise between each station (value is set to 1.0 in maximus i.e.
- 100%).
-
- 2. Send some data between the stations.
-
- Expected result: Data should be received from each station.
- """
- self.csi.init_test_bed ([2])
- avln = self.csi.avln_get (self.csi.avln_nb() - 1)
- avln.add_snr (self.csi.get_maximus (), 1.0)
- self.failUnless (send_check_datas (self.csi, avln))
- self.csi.uninit_test_bed ()
-
if __name__ == '__main__':
suite = unittest.TestLoader().loadTestsFromTestCase(TestStationsComm)
testResult = unittest.TextTestRunner(verbosity=2).run(suite)