for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace spec\byrokrat\autogiro\Tree;
use byrokrat\autogiro\Tree\PersonalIdNode;
use byrokrat\autogiro\Tree\Node;
use PhpSpec\ObjectBehavior;
class PersonalIdNodeSpec extends ObjectBehavior
{
function it_is_initializable()
$this->shouldHaveType(PersonalIdNode::CLASS);
}
function it_implements_node_interface()
$this->shouldHaveType(Node::CLASS);
function it_contains_a_type()
$this->getType()->shouldEqual('PersonalIdNode');