├── .gitignore ├── LICENSE ├── README ├── activator ├── activator-launch-1.3.6.jar ├── activator.bat ├── app ├── controllers │ └── Application.scala ├── traffic │ ├── actors │ │ ├── CelltowerEventHandler.scala │ │ ├── CelltowerLocationHandler.scala │ │ ├── LocationHandler.scala │ │ ├── SimulatorSocket.scala │ │ ├── SubscriberEventHandler.scala │ │ ├── TrafficSimulator.scala │ │ └── TripHandler.scala │ ├── brokers │ │ ├── ConfiguredBrokers.scala │ │ ├── KafkaBroker.scala │ │ ├── LogBroker.scala │ │ ├── MediatorBroker.scala │ │ ├── MessageBroker.scala │ │ ├── SocketBroker.scala │ │ └── WebSocketBroker.scala │ ├── model │ │ ├── Celltower.scala │ │ ├── Route.scala │ │ ├── Subscriber.scala │ │ └── Trip.scala │ └── protocol │ │ ├── AttachEvent.scala │ │ ├── CelltowerEvent.scala │ │ ├── RequestEvent.scala │ │ ├── RequestUpdateEvent.scala │ │ ├── SubscriberEvent.scala │ │ └── TopicEvent.scala └── views │ ├── main.scala.html │ └── simulator.scala.html ├── bin ├── create_traffic_db.sh ├── download_celltower_db.sh ├── start_simulation.sh ├── stop_simulation.sh └── update_simulation.sh ├── conf ├── akka-test.conf ├── application.conf ├── celltowers.conf ├── logback.xml └── routes ├── data ├── identities.csv.gz └── phone_ids.csv.gz ├── doc └── screenshot.png ├── project ├── build.properties └── plugins.sbt ├── public ├── images │ ├── cell-tower-green.png │ ├── cell-tower-red.png │ ├── celltower.png │ ├── ext_Cell_Tower_info_048x048.png │ ├── favicon.png │ ├── icon-mobile-night.xcf │ ├── icon-mobile-phone-1.gif │ ├── mobile-phone11.png │ ├── ui-bg_flat_30_cccccc_40x100.png │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ ├── ui-bg_glass_20_555555_1x400.png │ ├── ui-bg_glass_40_0078a3_1x400.png │ ├── ui-bg_glass_40_ffc73d_1x400.png │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ ├── ui-bg_inset-soft_25_000000_1x100.png │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_4b8e0b_256x240.png │ ├── ui-icons_a83300_256x240.png │ ├── ui-icons_cccccc_256x240.png │ ├── ui-icons_ffffff_256x240.png │ ├── yellow-phone-small.gif │ ├── yellow-phone-small.png │ └── yellow-phone.png └── js │ ├── application.js │ ├── external │ └── jquery │ │ └── jquery.js │ ├── hello.js │ ├── jquery-ui-index.html │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ ├── jquery-ui.theme.min.css │ └── markerclusterer.js ├── scrap.sc └── test ├── ApplicationSpec.scala ├── IntegrationSpec.scala └── traffic ├── FakeTestApp.scala ├── actors └── TripHandlerSpec.scala └── model ├── CelltowerSpec.scala ├── RouteSpec.scala └── SubscriberSpec.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/README -------------------------------------------------------------------------------- /activator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/activator -------------------------------------------------------------------------------- /activator-launch-1.3.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/activator-launch-1.3.6.jar -------------------------------------------------------------------------------- /activator.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/activator.bat -------------------------------------------------------------------------------- /app/controllers/Application.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/controllers/Application.scala -------------------------------------------------------------------------------- /app/traffic/actors/CelltowerEventHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/actors/CelltowerEventHandler.scala -------------------------------------------------------------------------------- /app/traffic/actors/CelltowerLocationHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/actors/CelltowerLocationHandler.scala -------------------------------------------------------------------------------- /app/traffic/actors/LocationHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/actors/LocationHandler.scala -------------------------------------------------------------------------------- /app/traffic/actors/SimulatorSocket.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/actors/SimulatorSocket.scala -------------------------------------------------------------------------------- /app/traffic/actors/SubscriberEventHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/actors/SubscriberEventHandler.scala -------------------------------------------------------------------------------- /app/traffic/actors/TrafficSimulator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/actors/TrafficSimulator.scala -------------------------------------------------------------------------------- /app/traffic/actors/TripHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/actors/TripHandler.scala -------------------------------------------------------------------------------- /app/traffic/brokers/ConfiguredBrokers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/brokers/ConfiguredBrokers.scala -------------------------------------------------------------------------------- /app/traffic/brokers/KafkaBroker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/brokers/KafkaBroker.scala -------------------------------------------------------------------------------- /app/traffic/brokers/LogBroker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/brokers/LogBroker.scala -------------------------------------------------------------------------------- /app/traffic/brokers/MediatorBroker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/brokers/MediatorBroker.scala -------------------------------------------------------------------------------- /app/traffic/brokers/MessageBroker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/brokers/MessageBroker.scala -------------------------------------------------------------------------------- /app/traffic/brokers/SocketBroker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/brokers/SocketBroker.scala -------------------------------------------------------------------------------- /app/traffic/brokers/WebSocketBroker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/brokers/WebSocketBroker.scala -------------------------------------------------------------------------------- /app/traffic/model/Celltower.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/model/Celltower.scala -------------------------------------------------------------------------------- /app/traffic/model/Route.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/model/Route.scala -------------------------------------------------------------------------------- /app/traffic/model/Subscriber.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/model/Subscriber.scala -------------------------------------------------------------------------------- /app/traffic/model/Trip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/model/Trip.scala -------------------------------------------------------------------------------- /app/traffic/protocol/AttachEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/protocol/AttachEvent.scala -------------------------------------------------------------------------------- /app/traffic/protocol/CelltowerEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/protocol/CelltowerEvent.scala -------------------------------------------------------------------------------- /app/traffic/protocol/RequestEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/protocol/RequestEvent.scala -------------------------------------------------------------------------------- /app/traffic/protocol/RequestUpdateEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/protocol/RequestUpdateEvent.scala -------------------------------------------------------------------------------- /app/traffic/protocol/SubscriberEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/protocol/SubscriberEvent.scala -------------------------------------------------------------------------------- /app/traffic/protocol/TopicEvent.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/traffic/protocol/TopicEvent.scala -------------------------------------------------------------------------------- /app/views/main.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/views/main.scala.html -------------------------------------------------------------------------------- /app/views/simulator.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/app/views/simulator.scala.html -------------------------------------------------------------------------------- /bin/create_traffic_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/bin/create_traffic_db.sh -------------------------------------------------------------------------------- /bin/download_celltower_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/bin/download_celltower_db.sh -------------------------------------------------------------------------------- /bin/start_simulation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/bin/start_simulation.sh -------------------------------------------------------------------------------- /bin/stop_simulation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/bin/stop_simulation.sh -------------------------------------------------------------------------------- /bin/update_simulation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/bin/update_simulation.sh -------------------------------------------------------------------------------- /conf/akka-test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/conf/akka-test.conf -------------------------------------------------------------------------------- /conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/conf/application.conf -------------------------------------------------------------------------------- /conf/celltowers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/conf/celltowers.conf -------------------------------------------------------------------------------- /conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/conf/logback.xml -------------------------------------------------------------------------------- /conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/conf/routes -------------------------------------------------------------------------------- /data/identities.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/data/identities.csv.gz -------------------------------------------------------------------------------- /data/phone_ids.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/data/phone_ids.csv.gz -------------------------------------------------------------------------------- /doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/doc/screenshot.png -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/project/build.properties -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /public/images/cell-tower-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/cell-tower-green.png -------------------------------------------------------------------------------- /public/images/cell-tower-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/cell-tower-red.png -------------------------------------------------------------------------------- /public/images/celltower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/celltower.png -------------------------------------------------------------------------------- /public/images/ext_Cell_Tower_info_048x048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ext_Cell_Tower_info_048x048.png -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/icon-mobile-night.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/icon-mobile-night.xcf -------------------------------------------------------------------------------- /public/images/icon-mobile-phone-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/icon-mobile-phone-1.gif -------------------------------------------------------------------------------- /public/images/mobile-phone11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/mobile-phone11.png -------------------------------------------------------------------------------- /public/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_glass_20_555555_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ui-bg_glass_20_555555_1x400.png -------------------------------------------------------------------------------- /public/images/ui-bg_glass_40_0078a3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ui-bg_glass_40_0078a3_1x400.png -------------------------------------------------------------------------------- /public/images/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /public/images/ui-bg_gloss-wave_25_333333_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ui-bg_gloss-wave_25_333333_500x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_inset-soft_25_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ui-bg_inset-soft_25_000000_1x100.png -------------------------------------------------------------------------------- /public/images/ui-bg_inset-soft_30_f58400_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ui-bg_inset-soft_30_f58400_1x100.png -------------------------------------------------------------------------------- /public/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /public/images/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /public/images/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /public/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /public/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /public/images/yellow-phone-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/yellow-phone-small.gif -------------------------------------------------------------------------------- /public/images/yellow-phone-small.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/yellow-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/images/yellow-phone.png -------------------------------------------------------------------------------- /public/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/js/application.js -------------------------------------------------------------------------------- /public/js/external/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/js/external/jquery/jquery.js -------------------------------------------------------------------------------- /public/js/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/js/hello.js -------------------------------------------------------------------------------- /public/js/jquery-ui-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/js/jquery-ui-index.html -------------------------------------------------------------------------------- /public/js/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/js/jquery-ui.css -------------------------------------------------------------------------------- /public/js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/js/jquery-ui.js -------------------------------------------------------------------------------- /public/js/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/js/jquery-ui.min.css -------------------------------------------------------------------------------- /public/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/js/jquery-ui.min.js -------------------------------------------------------------------------------- /public/js/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/js/jquery-ui.structure.css -------------------------------------------------------------------------------- /public/js/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/js/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /public/js/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/js/jquery-ui.theme.css -------------------------------------------------------------------------------- /public/js/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/js/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /public/js/markerclusterer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/public/js/markerclusterer.js -------------------------------------------------------------------------------- /scrap.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/scrap.sc -------------------------------------------------------------------------------- /test/ApplicationSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/test/ApplicationSpec.scala -------------------------------------------------------------------------------- /test/IntegrationSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/test/IntegrationSpec.scala -------------------------------------------------------------------------------- /test/traffic/FakeTestApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/test/traffic/FakeTestApp.scala -------------------------------------------------------------------------------- /test/traffic/actors/TripHandlerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/test/traffic/actors/TripHandlerSpec.scala -------------------------------------------------------------------------------- /test/traffic/model/CelltowerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/test/traffic/model/CelltowerSpec.scala -------------------------------------------------------------------------------- /test/traffic/model/RouteSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/test/traffic/model/RouteSpec.scala -------------------------------------------------------------------------------- /test/traffic/model/SubscriberSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botkop/botkop-telcotraffic-simulator/HEAD/test/traffic/model/SubscriberSpec.scala --------------------------------------------------------------------------------