Metabor\Statemachine\Condition\NotTest::testInversedTheInnerCondition PHP Method

testInversedTheInnerCondition() public method

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