. */ 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'] ]; } } h-10.1'>branch-10.1 Continuous Inspection: https://github.com/SonarSource/sonarqubewww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/coding-rules/facets/base-facet.js
blob: 86199db81b6ed779434a7f4652e1f6476958a587 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26