isValidReleaseChannelId() public method

public isValidReleaseChannelId ( $releaseChannelId )
Exemplo n.º 1
0
 /**
  * @dataProvider getTestValidReleaseChannelIds
  */
 public function test_isValidReleaseChannelId_shouldDetectIfReleaseChannelIsCorrectOrNot($expectedExists, $id)
 {
     $this->assertSame($expectedExists, $this->channels->isValidReleaseChannelId($id));
 }