~aleteoryx/muditaos

ref: 7897f863809a3fe98844c2a520249decffe069d9 muditaos/test/pytest/service-bluetooth/doc/bluetooth-test-pairing-forget-pair.puml -rw-r--r-- 699 bytes
7897f863 — Adam Dobrowolski [EGD-8164] Multiple same popups can be stored 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
@startuml
skinparam BackgroundColor F0F0F0
start
partition Initialization {
    :enforce pretest machine conditions:
    -inject test data to DB:
    ** BT device
    -PurePhone visible state:
    ** in ApplicationSettings:Bluetooth
    ** bluetooth turned off;
}

partition test-run {
    : turn BT on;
    : enter AllDevices;

    if (BT device name displayed) then (yes)
        : forget;
    else (no = failure)
        stop
    endif
    if (BT device name displayed) then (success)
    else (yes = failure)
        stop
    endif
}

partition post-test-analysis {
    :on "all device" window:
    -parse all devices window content
    -check for BT device name - should not appear;
}

@enduml