NsplTest\ArgsTest::testExpectsNotPositive_Negative PHP Метод

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

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