Metabor\Statemachine\Condition\TautologyTest::testIsAllwaysTrue PHP Method

testIsAllwaysTrue() public method

public testIsAllwaysTrue ( )
    public function testIsAllwaysTrue()
    {
        $instance = $this->createTestInstance();
        $subject = new \stdClass();
        $context = new \ArrayIterator();
        $result = $instance->checkCondition($subject, $context);
        $this->assertTrue($result);
    }