. */ namespace Test\PublicNamespace; class UtilTest extends \Test\TestCase { /** * @dataProvider channelProvider * * @param string $channel */ public function testOverrideChannel($channel) { \OCP\Util::setChannel($channel); $actual = \OCP\Util::getChannel($channel); $this->assertEquals($channel, $actual); } public function channelProvider() { return [ ['daily'], ['beta'], ['stable'], ['production'] ]; } }