for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* Box plugin for HiDev
*
* @link https://github.com/hiqdev/hidev-box
* @package hidev-box
* @license BSD-3-Clause
* @copyright Copyright (c) 2015-2016, HiQDev (http://hiqdev.com/)
*/
namespace hidev\box\tests\unit;
use hidev\box\Plugin;
/**
* Tests for Plugin class.
class PluginTest extends \PHPUnit_Framework_TestCase
{
* @var Plugin
protected $object;
protected function setUp()
$this->object = new Plugin();
}
protected function tearDown()
public function testConstructor()
$this->assertTrue(is_object($this->object));