isValidReleaseChannelId() 공개 메소드

public isValidReleaseChannelId ( $releaseChannelId )
예제 #1
0
 /**
  * @dataProvider getTestValidReleaseChannelIds
  */
 public function test_isValidReleaseChannelId_shouldDetectIfReleaseChannelIsCorrectOrNot($expectedExists, $id)
 {
     $this->assertSame($expectedExists, $this->channels->isValidReleaseChannelId($id));
 }