Module: MobyController::QT::SutController
- Defined in:
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/sut/controller.rb
Instance Method Summary collapse
- #connect(id) ⇒ Object
- #disconnect ⇒ Object
- #received_bytes ⇒ Object
- #received_packets ⇒ Object
- #sent_bytes ⇒ Object
- #sent_packets ⇒ Object
Instance Method Details
#connect(id) ⇒ Object
32 33 34 35 36 |
# File 'lib/testability-driver-plugins/testability-driver-qt-sut-plugin/sut/controller.rb', line 32 def connect( id ) @sut_adapter.connect( id ) end |
#disconnect ⇒ Object
26 27 28 29 30 |
# File 'lib/testability-driver-plugins/testability-driver-qt-sut-plugin/sut/controller.rb', line 26 def disconnect @sut_adapter.disconnect end |
#received_bytes ⇒ Object
38 39 40 41 42 |
# File 'lib/testability-driver-plugins/testability-driver-qt-sut-plugin/sut/controller.rb', line 38 def received_bytes @sut_adapter.socket_received_bytes end |
#received_packets ⇒ Object
50 51 52 53 54 |
# File 'lib/testability-driver-plugins/testability-driver-qt-sut-plugin/sut/controller.rb', line 50 def received_packets @sut_adapter.socket_received_packets end |
#sent_bytes ⇒ Object
44 45 46 47 48 |
# File 'lib/testability-driver-plugins/testability-driver-qt-sut-plugin/sut/controller.rb', line 44 def sent_bytes @sut_adapter.socket_sent_bytes end |
#sent_packets ⇒ Object
56 57 58 59 60 |
# File 'lib/testability-driver-plugins/testability-driver-qt-sut-plugin/sut/controller.rb', line 56 def sent_packets @sut_adapter.socket_sent_packets end |