| Total Complexity | 3 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 12 | class WebSocketSslClientTest extends TestCase |
||
| 13 | { |
||
| 14 | private const WS_SCHEME = 'wss://'; |
||
| 15 | private const WS_HOST = 'localhost'; |
||
| 16 | private const WS_PORT = ':8888'; |
||
| 17 | private const WS_URI = '/notifications/messanger/vkjsndfvjn23243'; |
||
| 18 | |||
| 19 | private $url; |
||
| 20 | |||
| 21 | public function setUp()/* The :void return type declaration that should be here would cause a BC issue */ |
||
| 22 | { |
||
| 23 | $this->url = self::WS_SCHEME . self::WS_HOST . self::WS_PORT . self::WS_URI; |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @test |
||
| 28 | * @throws \Exception |
||
| 29 | */ |
||
| 30 | public function it_sends_msg_over_ssl() |
||
| 48 | } |
||
| 49 | } |