for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare( strict_types = 1 );
namespace WMDE\Fundraising\Store\Tests;
use PHPUnit\Framework\TestCase;
use WMDE\Fundraising\Entities\Address;
/**
* @licence GNU GPL v2+
* @author Jeroen De Dauw < [email protected] >
*/
class AutoloaderTest extends TestCase {
public function testCanLoadEntities() {
$this->assertInternalType( 'object', new Address() );
}