3 declare(strict_types=1);
21 require_once __DIR__ .
'/bootstrap.php';
32 $tinymce->addPlugin(
'a_new_test_plugin');
33 $plugins = $tinymce->getPlugins();
34 $this->assertContains(
'a_new_test_plugin', $plugins);
39 $this->assertDirectoryDoesNotExist(
'./Services/RTE/tiny_mce_3_4_7');
40 $this->assertDirectoryDoesNotExist(
'./Services/RTE/tiny_mce_3_5_11');
46 $plugins_before_empty_removal = $tinymce->getPlugins();
48 $tinymce->removePlugin(
'');
49 $this->assertEquals($plugins_before_empty_removal, $tinymce->getPlugins());
50 $tinymce->removePlugin(
'link');
51 $this->assertArrayNotHasKey(
'link', $tinymce->getPlugins());
testTiny3xCodeHasbeenRemoved()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...