コード例 #1
0
ファイル: manager.php プロジェクト: stweil/owncloud-core
 public function testEnableAppForGroups()
 {
     $groups = array(new Group('group1', array(), null), new Group('group2', array(), null));
     $this->expectClearCache();
     $this->manager->enableAppForGroups('test', $groups);
     $this->assertEquals('["group1","group2"]', $this->appConfig->getValue('test', 'enabled', 'no'));
 }