diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-06-30 12:11:59 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-06-30 12:11:59 +0200 |
| commit | d0ae9f329685a19136cfd9a890b305db3bc384b9 (patch) | |
| tree | b3c72908b8930db16b1f682bb7119abeaf72fadf /tests/api_send_wlan0_1s2r/simulator.py | |
| parent | 1bef51d87860f782f687533012167bebb43c093d (diff) | |
Improve tests
Diffstat (limited to 'tests/api_send_wlan0_1s2r/simulator.py')
| -rwxr-xr-x | tests/api_send_wlan0_1s2r/simulator.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/api_send_wlan0_1s2r/simulator.py b/tests/api_send_wlan0_1s2r/simulator.py new file mode 100755 index 0000000..e721a93 --- /dev/null +++ b/tests/api_send_wlan0_1s2r/simulator.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python + +# Load ESDS +import esds +import numpy as np + +B=np.full((3,3),8) +L=np.full((3,3),0) +s=esds.Simulator({"wlan0":{"bandwidth":B, "latency":L, "is_wired":False}, "eth0":{"bandwidth":B, "latency":L, "is_wired":True}}) + +s.create_node("sender") +s.create_node("receiver") +s.create_node("receiver") + +s.run() |
