NsplTest\ArgsTest::testExpectsNotPositive_Negative PHP Method

testExpectsNotPositive_Negative() public method

    public function testExpectsNotPositive_Negative()
    {
        function expectsNotPositiveNegativeTest($arg)
        {
            expects(not(positive), $arg);
        }
        $this->assertNull(expectsNotPositiveNegativeTest(1));
    }
ArgsTest