diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-01-19 12:16:16 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-01-19 12:17:34 +0100 |
commit | 2c195e03654885e2b642e35866443bb6d844eccc (patch) | |
tree | c4fdc907f60fe8ba346f7286fe6583aed8722664 /plugins/squirrelmail_usercopy/tests | |
parent | cc2ee75ea426240417067ee036f254a64a3b7bc0 (diff) |
Add basic tests for plugins
Diffstat (limited to 'plugins/squirrelmail_usercopy/tests')
-rw-r--r-- | plugins/squirrelmail_usercopy/tests/SquirrelmailUsercopy.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/plugins/squirrelmail_usercopy/tests/SquirrelmailUsercopy.php b/plugins/squirrelmail_usercopy/tests/SquirrelmailUsercopy.php new file mode 100644 index 000000000..2e35509f0 --- /dev/null +++ b/plugins/squirrelmail_usercopy/tests/SquirrelmailUsercopy.php @@ -0,0 +1,23 @@ +<?php + +class SquirrelmailUsercopy_Plugin extends PHPUnit_Framework_TestCase +{ + + function setUp() + { + include_once dirname(__FILE__) . '/../squirrelmail_usercopy.php'; + } + + /** + * Plugin object construction test + */ + function test_constructor() + { + $rcube = rcube::get_instance(); + $plugin = new squirrelmail_usercopy($rcube->api); + + $this->assertInstanceOf('squirrelmail_usercopy', $plugin); + $this->assertInstanceOf('rcube_plugin', $plugin); + } +} + |