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

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

#region int
    public function testExpectsInt_Positive()
    {
        function expectsIntPositiveTest($arg1, $arg2)
        {
            expects(int, $arg2);
        }
        $this->assertNull(expectsIntPositiveTest(true, 1));
        $this->assertNull(expectsIntPositiveTest('hello world', 0));
    }
ArgsTest