Conditions | 1 |
Paths | 1 |
Total Lines | 5 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare( strict_types=1 ); |
||
36 | public function testCanSendToSlackChannel () : void |
||
37 | { |
||
38 | $communicator = new StackOverflowSlackCommunicator( $this->results ); |
||
39 | $communicator->setWebHookUrl( $this->getEnvironmentVariable( "SLACK_WEB_HOOK_PHP", null, null ) ); |
||
40 | $this->assertTrue( $communicator->send() ); |
||
41 | } |
||
43 |