Sha256: 3d0320a68df962d7296c9fbde83b06b3dc20a58b387860a8bacf46027c7b0994

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

Feature: Using the ADB module

  Scenario: Starting the adb server
    When the adb server is started
    Then the adb server should be running

  Scenario: Connecting to a device
    Given the adb server is started
    Then I should be able to connect to a local device

  Scenario: Getting list of devices
    Given the adb server is started
    And I am connected to the local device
    Then I should see the device "localhost:5555"

  Scenario: Installing applications on the device
    Given the adb server is started
    And I am connected to the local device
    Then I should be able to install the sample application

  Scenario: Uninstalling the application
    Given the adb server is started
    And I am connected to the local device
    Then I should be able to uninstall the sample application

  Scenario: Use shell to update the system date
    Given the adb server is started
    And I am connected to the local device
    When I change the devices date and time to 08/10/2012 11:25
    Then the device time should be Aug 10 11:25:00 EDT 2012

  Scenario: Forwarding ports
    Given the adb server is started
    And I am connected to the local device
    Then I should be able to forward "tcp:7777" to "tcp:5555"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ADB-0.2 features/ADB.feature