1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80:
<?php
namespace Nethgui\Test\Unit\Nethgui\View;
class ViewCommandSequenceTest extends \PHPUnit_Framework_TestCase
{
protected $object;
private $origin;
protected function setUp()
{
$this->origin = $this->getMock('Nethgui\View\ViewInterface');
$selector = 'Selector';
$this->object = new \Nethgui\View\ViewCommandSequence($this->origin, $selector);
}
public function test__call1()
{
$this->object
->__call('method1', array(1, 2, 3))
->__call('method2', array(1, 'a', 'b'))
->setReceiver($this->getMock('Nethgui\View\CommandReceiverInterface'));
;
$this->object->execute();
}
public function test__call2()
{
$this->object->method3('M', 3)->method4('M', 5)->setReceiver($this->getMock('Nethgui\View\CommandReceiverInterface'));
$this->object->execute();
}
public function testExecuteEmpty()
{
$this->object->execute();
}
public function testIsExecutedTrue()
{
$this->object->execute();
$this->assertTrue($this->object->isExecuted());
}
public function testIsExecutedFalse()
{
$this->assertFalse($this->object->isExecuted());
}
public function testSetReceiver()
{
$this->assertSame($this->object, $this->object->setReceiver($this->getMock('Nethgui\View\CommandReceiverInterface')));
}
public function testGetOrigin()
{
$this->assertSame($this->origin, $this->object->getOrigin());
}
public function testGetSelector()
{
$this->assertEquals('Selector', $this->object->getSelector());
}
}