Files
DesignPatternsPHP/Structural/Proxy/Tests/ProxyTest.php
2017-03-08 23:59:36 +01:00

25 lines
577 B
PHP

<?php
namespace DesignPatterns\Structural\Proxy\Tests;
use DesignPatterns\Structural\Proxy\RecordProxy;
class ProxyTest extends \PHPUnit_Framework_TestCase
{
public function testWillSetDirtyFlagInProxy()
{
$recordProxy = new RecordProxy([]);
$recordProxy->username = 'baz';
$this->assertTrue($recordProxy->isDirty());
}
public function testProxyIsInstanceOfRecord()
{
$recordProxy = new RecordProxy([]);
$recordProxy->username = 'baz';
$this->assertInstanceOf(RecordProxy::class, $recordProxy);
}
}