for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SES\Tests;
use SES\Settings;
/**
* @covers \SES\Settings
*
* @group semantic-signup
* @license GNU GPL v2+
* @since 1.0
* @author mwjames
*/
class SettingsTest extends \PHPUnit_Framework_TestCase {
public function testCanConstruct() {
$this->assertInstanceOf(
'\SES\Settings',
new Settings()
);
}
public function testGetSettings() {
$instance = new Settings();
$this->assertInternalType(
'array',
$instance->getSettings()