PluginsTest.php 364 B

12345678910111213141516171819
  1. <?php
  2. namespace Elgg\Database;
  3. class PluginsTest extends \PHPUnit_Framework_TestCase {
  4. public function testAfterPluginLoadActiveCheckIsFree() {
  5. $this->markTestIncomplete();
  6. }
  7. public function testPluginActivateAltersIsActive() {
  8. $this->markTestIncomplete();
  9. }
  10. public function testPluginDeactivateAltersIsActive() {
  11. $this->markTestIncomplete();
  12. }
  13. }