for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SES\Tests;
use SES\SignupFactory;
/**
* @covers \SES\SignupFactory
*
* @group semantic-signup
* @license GNU GPL v2+
* @since 1.1
* @author mwjames
*/
class SignupFactoryTest extends \PHPUnit_Framework_TestCase {
public function testCanConstruct() {
$this->assertInstanceOf(
'\SES\SignupFactory',
new SignupFactory()
);
}
public function testCanConstructFormPrinterHandler() {
$instance = new SignupFactory();
'\SES\FormPrinterHandler',
$instance->newFormPrinterHandler()
public function testCanConstructUserAccountDataChecker() {
'\SES\UserAccountDataChecker',
$instance->newUserAccountDataChecker()