Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Jqueryui.php 453B

1234567891011121314151617181920212223
  1. <?php
  2. class Jqueryui_Plugin extends PHPUnit_Framework_TestCase
  3. {
  4. function setUp()
  5. {
  6. include_once __DIR__ . '/../jqueryui.php';
  7. }
  8. /**
  9. * Plugin object construction test
  10. */
  11. function test_constructor()
  12. {
  13. $rcube = rcube::get_instance();
  14. $plugin = new jqueryui($rcube->api);
  15. $this->assertInstanceOf('jqueryui', $plugin);
  16. $this->assertInstanceOf('rcube_plugin', $plugin);
  17. }
  18. }