Metabor\Statemachine\Condition\ContradictionTest::testIsAllwaysFalse PHP Метод

testIsAllwaysFalse() публичный Метод

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