Browse Source

Add the AppContainer

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
tags/v12.0.0beta1
Roeland Jago Douma 7 years ago
parent
commit
8b94fbe014
No account linked to committer's email address
1 changed files with 8 additions and 0 deletions
  1. 8
    0
      tests/lib/InfoXmlTest.php

+ 8
- 0
tests/lib/InfoXmlTest.php View File

@@ -63,6 +63,14 @@ class InfoXmlTest extends TestCase {
$appPath = \OC_App::getAppPath($app);
\OC_App::registerAutoloading($app, $appPath);

//Add the appcontainer
$applicationClassName = \OCP\AppFramework\App::buildAppNamespace($app) . '\\AppInfo\\Application';
if (class_exists($applicationClassName)) {
$application = new $applicationClassName();
} else {
$application = new \OCP\AppFramework\App($app);
}

if (isset($appInfo['background-jobs'])) {
foreach ($appInfo['background-jobs'] as $job) {
$this->assertTrue(class_exists($job), 'Asserting background job "' . $job . '" exists');

Loading…
Cancel
Save