Repository URL to install this package:
|
Version:
0.0.1-0 ▾
|
zendcddemo-apps-gotcms-project
/
zendcddemo-files
/
apps
/
gotcms_project
/
tests
/
module
/
Application
/
Form
/
InstallTest.php
|
|---|
<?php
/**
* This source file is part of GotCms.
*
* GotCms is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GotCms is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along
* with GotCms. If not, see <http://www.gnu.org/licenses/lgpl-3.0.html>.
*
* PHP Version >=5.3
*
* @category Gc_Tests
* @package ZfModules
* @author Pierre Rambaud (GoT) <pierre.rambaud86@gmail.com>
* @license GNU/LGPL http://www.gnu.org/licenses/lgpl-3.0.html
* @link http://www.got-cms.com
*/
namespace Application\Form;
use Gc\Registry;
/**
* Generated by PHPUnit_SkeletonGenerator 1.2.0 on 2013-03-15 at 23:51:32.
*
* @group ZfModules
* @category Gc_Tests
* @package ZfModules
*/
class InstallTest extends \PHPUnit_Framework_TestCase
{
/**
* @var Install
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*
* @return void
*/
protected function setUp()
{
$this->object = new Install;
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*
* @return void
*/
protected function tearDown()
{
unset($this->object);
}
/**
* Test
*
* @return void
*/
public function testInit()
{
$this->assertNull($this->object->init());
}
/**
* Test
*
* @return void
*/
public function testLang()
{
$this->assertNull($this->object->lang(Registry::get('Application')->getConfig()));
}
/**
* Test
*
* @return void
*/
public function testLicense()
{
$this->assertNull($this->object->license());
}
/**
* Test
*
* @return void
*/
public function testDatabase()
{
$this->assertNull($this->object->database());
}
/**
* Test
*
* @return void
*/
public function testConfiguration()
{
$this->assertNull($this->object->configuration());
}
}