Sleeps for the specified number of seconds. @type secs: float @param secs: number of seconds
(secs=1.0)
| 3123 | |
| 3124 | @staticmethod |
| 3125 | def sleep(secs=1.0): |
| 3126 | """ |
| 3127 | Sleeps for the specified number of seconds. |
| 3128 | |
| 3129 | @type secs: float |
| 3130 | @param secs: number of seconds |
| 3131 | """ |
| 3132 | time.sleep(secs) |
| 3133 | |
| 3134 | def assertServiceResponse(self, response): |
| 3135 | """ |
no outgoing calls
no test coverage detected